@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
@@ -0,0 +1,123 @@
1
+ 'use strict';
2
+
3
+ exports.EFilterOperation = void 0;
4
+ (function (EFilterOperation) {
5
+ EFilterOperation["BETWEEN"] = "between";
6
+ EFilterOperation["CONT"] = "cont";
7
+ EFilterOperation["CONTL"] = "contl";
8
+ EFilterOperation["ENDS"] = "ends";
9
+ EFilterOperation["ENDSL"] = "endsl";
10
+ EFilterOperation["EQ"] = "eq";
11
+ EFilterOperation["EQL"] = "eql";
12
+ EFilterOperation["EXCL"] = "excl";
13
+ EFilterOperation["EXCLL"] = "excll";
14
+ EFilterOperation["GT"] = "gt";
15
+ EFilterOperation["GTE"] = "gte";
16
+ EFilterOperation["IN"] = "in";
17
+ EFilterOperation["INL"] = "inl";
18
+ EFilterOperation["ISNULL"] = "isnull";
19
+ EFilterOperation["LT"] = "lt";
20
+ EFilterOperation["LTE"] = "lte";
21
+ EFilterOperation["NE"] = "ne";
22
+ EFilterOperation["NEL"] = "nel";
23
+ EFilterOperation["NOTIN"] = "notin";
24
+ EFilterOperation["NOTINL"] = "notinl";
25
+ EFilterOperation["NOTNULL"] = "notnull";
26
+ EFilterOperation["STARTS"] = "starts";
27
+ EFilterOperation["STARTSL"] = "startsl";
28
+ })(exports.EFilterOperation || (exports.EFilterOperation = {}));
29
+ exports.EFilterOperationArray = void 0;
30
+ (function (EFilterOperationArray) {
31
+ EFilterOperationArray["CONT"] = "cont";
32
+ EFilterOperationArray["EXCL"] = "excl";
33
+ EFilterOperationArray["ISNULL"] = "isnull";
34
+ EFilterOperationArray["NOTNULL"] = "notnull";
35
+ })(exports.EFilterOperationArray || (exports.EFilterOperationArray = {}));
36
+ exports.EFilterOperationBoolean = void 0;
37
+ (function (EFilterOperationBoolean) {
38
+ EFilterOperationBoolean["EQ"] = "eq";
39
+ EFilterOperationBoolean["EXCL"] = "excl";
40
+ EFilterOperationBoolean["IN"] = "in";
41
+ EFilterOperationBoolean["ISNULL"] = "isnull";
42
+ EFilterOperationBoolean["NE"] = "ne";
43
+ EFilterOperationBoolean["NOTIN"] = "notin";
44
+ EFilterOperationBoolean["NOTNULL"] = "notnull";
45
+ })(exports.EFilterOperationBoolean || (exports.EFilterOperationBoolean = {}));
46
+ exports.EFilterOperationDate = void 0;
47
+ (function (EFilterOperationDate) {
48
+ EFilterOperationDate["BETWEEN"] = "between";
49
+ EFilterOperationDate["EQ"] = "eq";
50
+ EFilterOperationDate["GT"] = "gt";
51
+ EFilterOperationDate["GTE"] = "gte";
52
+ EFilterOperationDate["ISNULL"] = "isnull";
53
+ EFilterOperationDate["LT"] = "lt";
54
+ EFilterOperationDate["LTE"] = "lte";
55
+ EFilterOperationDate["NE"] = "ne";
56
+ EFilterOperationDate["NOTNULL"] = "notnull";
57
+ })(exports.EFilterOperationDate || (exports.EFilterOperationDate = {}));
58
+ exports.EFilterOperationEnum = void 0;
59
+ (function (EFilterOperationEnum) {
60
+ EFilterOperationEnum["EQ"] = "eq";
61
+ EFilterOperationEnum["IN"] = "in";
62
+ EFilterOperationEnum["ISNULL"] = "isnull";
63
+ EFilterOperationEnum["NE"] = "ne";
64
+ EFilterOperationEnum["NOTIN"] = "notin";
65
+ EFilterOperationEnum["NOTNULL"] = "notnull";
66
+ })(exports.EFilterOperationEnum || (exports.EFilterOperationEnum = {}));
67
+ exports.EFilterOperationNumber = void 0;
68
+ (function (EFilterOperationNumber) {
69
+ EFilterOperationNumber["BETWEEN"] = "between";
70
+ EFilterOperationNumber["EQ"] = "eq";
71
+ EFilterOperationNumber["GT"] = "gt";
72
+ EFilterOperationNumber["GTE"] = "gte";
73
+ EFilterOperationNumber["IN"] = "in";
74
+ EFilterOperationNumber["ISNULL"] = "isnull";
75
+ EFilterOperationNumber["LT"] = "lt";
76
+ EFilterOperationNumber["LTE"] = "lte";
77
+ EFilterOperationNumber["NE"] = "ne";
78
+ EFilterOperationNumber["NOTIN"] = "notin";
79
+ EFilterOperationNumber["NOTNULL"] = "notnull";
80
+ })(exports.EFilterOperationNumber || (exports.EFilterOperationNumber = {}));
81
+ exports.EFilterOperationObject = void 0;
82
+ (function (EFilterOperationObject) {
83
+ EFilterOperationObject["EQ"] = "eq";
84
+ EFilterOperationObject["ISNULL"] = "isnull";
85
+ EFilterOperationObject["NE"] = "ne";
86
+ EFilterOperationObject["NOTNULL"] = "notnull";
87
+ })(exports.EFilterOperationObject || (exports.EFilterOperationObject = {}));
88
+ exports.EFilterOperationRelation = void 0;
89
+ (function (EFilterOperationRelation) {
90
+ EFilterOperationRelation["EQ"] = "eq";
91
+ EFilterOperationRelation["IN"] = "in";
92
+ EFilterOperationRelation["ISNULL"] = "isnull";
93
+ EFilterOperationRelation["NE"] = "ne";
94
+ EFilterOperationRelation["NOTIN"] = "notin";
95
+ EFilterOperationRelation["NOTNULL"] = "notnull";
96
+ })(exports.EFilterOperationRelation || (exports.EFilterOperationRelation = {}));
97
+ exports.EFilterOperationString = void 0;
98
+ (function (EFilterOperationString) {
99
+ EFilterOperationString["CONT"] = "cont";
100
+ EFilterOperationString["CONTL"] = "contl";
101
+ EFilterOperationString["ENDS"] = "ends";
102
+ EFilterOperationString["ENDSL"] = "endsl";
103
+ EFilterOperationString["EQ"] = "eq";
104
+ EFilterOperationString["EQL"] = "eql";
105
+ EFilterOperationString["IN"] = "in";
106
+ EFilterOperationString["INL"] = "inl";
107
+ EFilterOperationString["ISNULL"] = "isnull";
108
+ EFilterOperationString["NE"] = "ne";
109
+ EFilterOperationString["NEL"] = "nel";
110
+ EFilterOperationString["NOTIN"] = "notin";
111
+ EFilterOperationString["NOTINL"] = "notinl";
112
+ EFilterOperationString["NOTNULL"] = "notnull";
113
+ EFilterOperationString["STARTS"] = "starts";
114
+ EFilterOperationString["STARTSL"] = "startsl";
115
+ })(exports.EFilterOperationString || (exports.EFilterOperationString = {}));
116
+ exports.EFilterOperationUuid = void 0;
117
+ (function (EFilterOperationUuid) {
118
+ EFilterOperationUuid["EQ"] = "eq";
119
+ EFilterOperationUuid["ISNULL"] = "isnull";
120
+ EFilterOperationUuid["NE"] = "ne";
121
+ EFilterOperationUuid["NOTNULL"] = "notnull";
122
+ })(exports.EFilterOperationUuid || (exports.EFilterOperationUuid = {}));
123
+ //# sourceMappingURL=filter-operation.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filter-operation.enum.js","sources":["../../../../src/enum/filter-operation.enum.ts"],"sourcesContent":[null],"names":["EFilterOperation","EFilterOperationArray","EFilterOperationBoolean","EFilterOperationDate","EFilterOperationEnum","EFilterOperationNumber","EFilterOperationObject","EFilterOperationRelation","EFilterOperationString","EFilterOperationUuid"],"mappings":"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"}
@@ -0,0 +1,8 @@
1
+ 'use strict';
2
+
3
+ exports.EFilterOrderDirection = void 0;
4
+ (function (EFilterOrderDirection) {
5
+ EFilterOrderDirection["ASC"] = "asc";
6
+ EFilterOrderDirection["DESC"] = "desc";
7
+ })(exports.EFilterOrderDirection || (exports.EFilterOrderDirection = {}));
8
+ //# sourceMappingURL=filter-order-direction.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filter-order-direction.enum.js","sources":["../../../../src/enum/filter-order-direction.enum.ts"],"sourcesContent":[null],"names":["EFilterOrderDirection"],"mappings":";;AAAYA;AAAZ,CAAA,UAAY,qBAAqB,EAAA;AAChC,IAAA,qBAAA,CAAA,KAAA,CAAA,GAAA,KAAW;AACX,IAAA,qBAAA,CAAA,MAAA,CAAA,GAAA,MAAa;AACd,CAAC,EAHWA,6BAAqB,KAArBA,6BAAqB,GAGhC,EAAA,CAAA,CAAA;;"}
@@ -0,0 +1,106 @@
1
+ 'use strict';
2
+
3
+ exports.EErrorStringAction = void 0;
4
+ (function (EErrorStringAction) {
5
+ EErrorStringAction["ACCESS_DENIED"] = "{entity}_ACCESS_DENIED";
6
+ EErrorStringAction["ADDRESS_NOT_MATCH_PATTERN"] = "{entity}_ADDRESS_NOT_MATCH_PATTERN";
7
+ EErrorStringAction["ALREADY_ARCHIVED"] = "{entity}_ALREADY_ARCHIVED";
8
+ EErrorStringAction["ALREADY_CANCELLED"] = "{entity}_ALREADY_CANCELLED";
9
+ EErrorStringAction["ALREADY_EXISTS"] = "{entity}_ALREADY_EXISTS";
10
+ EErrorStringAction["ALREADY_PAID"] = "{entity}_ALREADY_PAID";
11
+ EErrorStringAction["ALREADY_PROCESSED"] = "{entity}_ALREADY_PROCESSED";
12
+ EErrorStringAction["ALREADY_SUBSCRIBED"] = "{entity}_ALREADY_SUBSCRIBED";
13
+ EErrorStringAction["ARCHIVE_ERROR"] = "{entity}_ARCHIVE_ERROR";
14
+ EErrorStringAction["AUTHENTICATION_ERROR"] = "{entity}_AUTHENTICATION_ERROR";
15
+ EErrorStringAction["AUTHORIZED_ENTITY_NOT_FOUND"] = "AUTHORIZED_ENTITY_NOT_FOUND";
16
+ EErrorStringAction["BLOCKED"] = "{entity}_BLOCKED";
17
+ EErrorStringAction["BULK_OPERATION_FAILED"] = "{entity}_BULK_OPERATION_FAILED";
18
+ EErrorStringAction["CANCELLED"] = "{entity}_CANCELLED";
19
+ EErrorStringAction["CONCURRENT_MODIFICATION"] = "{entity}_CONCURRENT_MODIFICATION";
20
+ EErrorStringAction["CONFIRMATION_ERROR"] = "{entity}_CONFIRMATION_ERROR";
21
+ EErrorStringAction["CONFLICT"] = "{entity}_CONFLICT";
22
+ EErrorStringAction["COUNTING_ERROR"] = "{entity}_COUNTING_ERROR";
23
+ EErrorStringAction["CREATING_ERROR"] = "{entity}_CREATING_ERROR";
24
+ EErrorStringAction["CREATING_MANY_ERROR"] = "{entity}_CREATING_MANY_ERROR";
25
+ EErrorStringAction["DELETING_ERROR"] = "{entity}_DELETING_ERROR";
26
+ EErrorStringAction["DEPENDENCY_NOT_FOUND"] = "{entity}_DEPENDENCY_NOT_FOUND";
27
+ EErrorStringAction["DISABLED_FOR_MERCHANT"] = "{entity}_DISABLED_FOR_MERCHANT";
28
+ EErrorStringAction["DISABLED_FOR_USER"] = "{entity}_DISABLED_FOR_USER";
29
+ EErrorStringAction["DISABLED_GLOBALLY"] = "{entity}_DISABLED_GLOBALLY";
30
+ EErrorStringAction["DOWNLOAD_ERROR"] = "{entity}_DOWNLOAD_ERROR";
31
+ EErrorStringAction["EXISTS_CHECKING_ERROR"] = "{entity}_EXISTS_CHECKING_ERROR";
32
+ EErrorStringAction["EXPIRED"] = "{entity}_EXPIRED";
33
+ EErrorStringAction["EXPORT_ERROR"] = "{entity}_EXPORT_ERROR";
34
+ EErrorStringAction["EXTERNAL_API_ERROR"] = "{entity}_EXTERNAL_API_ERROR";
35
+ EErrorStringAction["EXTERNAL_SERVICE_ERROR"] = "{entity}_EXTERNAL_SERVICE_ERROR";
36
+ EErrorStringAction["FETCHING_ALL_ERROR"] = "{entity}_FETCHING_ALL_ERROR";
37
+ EErrorStringAction["FETCHING_ERROR"] = "{entity}_FETCHING_ERROR";
38
+ EErrorStringAction["FETCHING_LIST_ERROR"] = "{entity}_FETCHING_LIST_ERROR";
39
+ EErrorStringAction["FETCHING_SIMPLE_LIST_ERROR"] = "{entity}_FETCHING_SIMPLE_LIST_ERROR";
40
+ EErrorStringAction["FILE_TOO_LARGE"] = "{entity}_FILE_TOO_LARGE";
41
+ EErrorStringAction["IMPORT_ERROR"] = "{entity}_IMPORT_ERROR";
42
+ EErrorStringAction["INSUFFICENT_FUNDS"] = "{entity}_INSUFFICENT_FUNDS";
43
+ EErrorStringAction["INTEGRATION_ERROR"] = "{entity}_INTEGRATION_ERROR";
44
+ EErrorStringAction["INVALID_AMOUNT"] = "{entity}_INVALID_AMOUNT";
45
+ EErrorStringAction["INVALID_CODE"] = "{entity}_INVALID_CODE";
46
+ EErrorStringAction["INVALID_CREDENTIALS"] = "{entity}_INVALID_CREDENTIALS";
47
+ EErrorStringAction["INVALID_DATA_SPECIFIED"] = "{entity}_INVALID_DATA_SPECIFIED";
48
+ EErrorStringAction["INVALID_DYNAMIC_VALUE_SPECIFIED"] = "{entity}_INVALID_DYNAMIC_VALUE_SPECIFIED";
49
+ EErrorStringAction["INVALID_FILE_TYPE"] = "{entity}_INVALID_FILE_TYPE";
50
+ EErrorStringAction["INVALID_FORMAT"] = "{entity}_INVALID_FORMAT";
51
+ EErrorStringAction["INVALID_HASHING_ALGORITM_CONFIGURED"] = "INVALID_HASHING_ALGORITHM_CONFIGURED";
52
+ EErrorStringAction["INVALID_MESSAGE"] = "{entity}_INVALID_MESSAGE";
53
+ EErrorStringAction["INVALID_PERMISSIONS"] = "{entity}_INVALID_PERMISSIONS";
54
+ EErrorStringAction["INVALID_SENDER"] = "{entity}_INVALID_SENDER";
55
+ EErrorStringAction["INVALID_SIGNATURE"] = "INVALID_SIGNATURE";
56
+ EErrorStringAction["INVALID_STATE"] = "{entity}_INVALID_STATE";
57
+ EErrorStringAction["INVALID_STATUS"] = "{entity}_INVALID_STATUS";
58
+ EErrorStringAction["INVALID_TOKEN"] = "{entity}_INVALID_TOKEN";
59
+ EErrorStringAction["INVALID_TYPE"] = "{entity}_INVALID_TYPE";
60
+ EErrorStringAction["INVALIDATING_ERROR"] = "{entity}_INVALIDATING_ERROR";
61
+ EErrorStringAction["LIST_PAGE_NOT_FOUND"] = "{entity}_LIST_PAGE_NOT_FOUND";
62
+ EErrorStringAction["LOCKED"] = "{entity}_LOCKED";
63
+ EErrorStringAction["MAINTENANCE_MODE"] = "{entity}_MAINTENANCE_MODE";
64
+ EErrorStringAction["NOT_ACTIVE"] = "{entity}_NOT_ACTIVE";
65
+ EErrorStringAction["NOT_CONFIGURED"] = "{entity}_NOT_CONFIGURED";
66
+ EErrorStringAction["NOT_CONNECTED"] = "{entity}_NOT_CONNECTED";
67
+ EErrorStringAction["NOT_FINAL_STATUS"] = "{entity}_NOT_FINAL_STATUS";
68
+ EErrorStringAction["NOT_FOUND"] = "{entity}_NOT_FOUND";
69
+ EErrorStringAction["NOT_SPECIFIED_ID_FOR_UNIQUE"] = "{entity}_NOT_SPECIFIED_ID_FOR_UNIQUE";
70
+ EErrorStringAction["NOT_SUBSCRIBED"] = "{entity}_NOT_SUBSCRIBED";
71
+ EErrorStringAction["NOT_SUPPORTS_THIS_DIRECTION_FOR_MERCHANT"] = "{entity}_NOT_SUPPORTS_THIS_DIRECTION_FOR_MERCHANT";
72
+ EErrorStringAction["NOT_SUPPORTS_THIS_DIRECTION_FOR_USER"] = "{entity}_NOT_SUPPORTS_THIS_DIRECTION_FOR_USER";
73
+ EErrorStringAction["NOT_SUPPORTS_THIS_DIRECTION_GLOBALLY"] = "{entity}_NOT_SUPPORTS_THIS_DIRECTION_GLOBALLY";
74
+ EErrorStringAction["OPERATION_NOT_ALLOWED"] = "{entity}_OPERATION_NOT_ALLOWED";
75
+ EErrorStringAction["OUT_OF_GLOBAL_LIMITS"] = "{entity}_OUT_OF_GLOBAL_LIMITS";
76
+ EErrorStringAction["OUT_OF_GLOBAL_LIMITS_WITH_FEE"] = "{entity}_OUT_OF_GLOBAL_LIMITS_WITH_FEE";
77
+ EErrorStringAction["OUT_OF_MERCHANT_LIMITS"] = "{entity}_OUT_OF_MERCHANT_LIMITS";
78
+ EErrorStringAction["OUT_OF_MERCHANT_LIMITS_WITH_FEE"] = "{entity}_OUT_OF_MERCHANT_LIMITS_WITH_FEE";
79
+ EErrorStringAction["OUT_OF_USER_LIMITS"] = "{entity}_OUT_OF_USER_LIMITS";
80
+ EErrorStringAction["OUT_OF_USER_LIMITS_WITH_FEE"] = "{entity}_OUT_OF_USER_LIMITS_WITH_FEE";
81
+ EErrorStringAction["PARTIAL_SUCCESS"] = "{entity}_PARTIAL_SUCCESS";
82
+ EErrorStringAction["PROPERTY_ALREADY_SET"] = "{entity}_PROPERTY_ALREADY_SET";
83
+ EErrorStringAction["RATE_LIMIT_EXCEEDED"] = "{entity}_RATE_LIMIT_EXCEEDED";
84
+ EErrorStringAction["REDEEMING_ERROR"] = "{entity}_REDEEMING_ERROR";
85
+ EErrorStringAction["REGISTRATION_ERROR"] = "{entity}_REGISTRATION_ERROR";
86
+ EErrorStringAction["REQUEST_SIGNATURE_NOT_FOUND"] = "REQUEST_SIGNATURE_NOT_FOUND";
87
+ EErrorStringAction["REQUEST_TIMESTAMP_NOT_FOUND"] = "REQUEST_TIMESTAMP_NOT_FOUND";
88
+ EErrorStringAction["REQUEST_USER_AGENT_NOT_FOUND"] = "REQUEST_USER_AGENT_NOT_FOUND";
89
+ EErrorStringAction["RESOURCE_EXHAUSTED"] = "{entity}_RESOURCE_EXHAUSTED";
90
+ EErrorStringAction["RESTORE_ERROR"] = "{entity}_RESTORE_ERROR";
91
+ EErrorStringAction["SENDING_ERROR"] = "{entity}_SENDING_ERROR";
92
+ EErrorStringAction["SERVICE_UNAVAILABLE"] = "{entity}_SERVICE_UNAVAILABLE";
93
+ EErrorStringAction["SESSION_EXPIRED"] = "{entity}_SESSION_EXPIRED";
94
+ EErrorStringAction["SIMPLE_LIST_NOT_FOUND"] = "{entity}_SIMPLE_LIST_NOT_FOUND";
95
+ EErrorStringAction["SUBSCRIPTION_ERROR"] = "{entity}_SUBSCRIPTION_ERROR";
96
+ EErrorStringAction["SYSTEM_ERROR"] = "{entity}_SYSTEM_ERROR";
97
+ EErrorStringAction["TIMEOUT"] = "{entity}_TIMEOUT";
98
+ EErrorStringAction["TIMESTAMP_EXPIRED"] = "TIMESTAMP_EXPIRED";
99
+ EErrorStringAction["TIMESTAMP_IN_FUTURE"] = "{entity}_IN_FUTURE";
100
+ EErrorStringAction["TOKEN_EXPIRED"] = "{entity}_TOKEN_EXPIRED";
101
+ EErrorStringAction["TOO_MANY_REQUESTS"] = "{entity}_TOO_MANY_REQUESTS";
102
+ EErrorStringAction["UPDATING_ERROR"] = "{entity}_UPDATING_ERROR";
103
+ EErrorStringAction["UPLOAD_ERROR"] = "{entity}_UPLOAD_ERROR";
104
+ EErrorStringAction["VALIDATION_ERROR"] = "{entity}_VALIDATION_ERROR";
105
+ })(exports.EErrorStringAction || (exports.EErrorStringAction = {}));
106
+ //# sourceMappingURL=error-string-action.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"error-string-action.enum.js","sources":["../../../../../src/enum/utility/error-string-action.enum.ts"],"sourcesContent":[null],"names":["EErrorStringAction"],"mappings":"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"}
@@ -0,0 +1,38 @@
1
+ 'use strict';
2
+
3
+ /******************************************************************************
4
+ Copyright (c) Microsoft Corporation.
5
+
6
+ Permission to use, copy, modify, and/or distribute this software for any
7
+ purpose with or without fee is hereby granted.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
10
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
12
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
14
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15
+ PERFORMANCE OF THIS SOFTWARE.
16
+ ***************************************************************************** */
17
+ /* global Reflect, Promise, SuppressedError, Symbol, Iterator */
18
+
19
+
20
+ function __decorate(decorators, target, key, desc) {
21
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
22
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
23
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
24
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
25
+ }
26
+
27
+ function __metadata(metadataKey, metadataValue) {
28
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
29
+ }
30
+
31
+ typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
32
+ var e = new Error(message);
33
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
34
+ };
35
+
36
+ exports.__decorate = __decorate;
37
+ exports.__metadata = __metadata;
38
+ //# sourceMappingURL=tslib.es6.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tslib.es6.js","sources":["../../../../node_modules/tslib/tslib.es6.js"],"sourcesContent":["/******************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise, SuppressedError, Symbol, Iterator */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\r\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\r\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\r\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\r\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\r\n var _, done = false;\r\n for (var i = decorators.length - 1; i >= 0; i--) {\r\n var context = {};\r\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\r\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\r\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\r\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\r\n if (kind === \"accessor\") {\r\n if (result === void 0) continue;\r\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\r\n if (_ = accept(result.get)) descriptor.get = _;\r\n if (_ = accept(result.set)) descriptor.set = _;\r\n if (_ = accept(result.init)) initializers.unshift(_);\r\n }\r\n else if (_ = accept(result)) {\r\n if (kind === \"field\") initializers.unshift(_);\r\n else descriptor[key] = _;\r\n }\r\n }\r\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\r\n done = true;\r\n};\r\n\r\nexport function __runInitializers(thisArg, initializers, value) {\r\n var useValue = arguments.length > 2;\r\n for (var i = 0; i < initializers.length; i++) {\r\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\r\n }\r\n return useValue ? value : void 0;\r\n};\r\n\r\nexport function __propKey(x) {\r\n return typeof x === \"symbol\" ? x : \"\".concat(x);\r\n};\r\n\r\nexport function __setFunctionName(f, name, prefix) {\r\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\r\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\r\n};\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g = Object.create((typeof Iterator === \"function\" ? Iterator : Object).prototype);\r\n return g.next = verb(0), g[\"throw\"] = verb(1), g[\"return\"] = verb(2), typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n var desc = Object.getOwnPropertyDescriptor(m, k);\r\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\r\n desc = { enumerable: true, get: function() { return m[k]; } };\r\n }\r\n Object.defineProperty(o, k2, desc);\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = Object.create((typeof AsyncIterator === \"function\" ? AsyncIterator : Object).prototype), verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\r\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nvar ownKeys = function(o) {\r\n ownKeys = Object.getOwnPropertyNames || function (o) {\r\n var ar = [];\r\n for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;\r\n return ar;\r\n };\r\n return ownKeys(o);\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== \"default\") __createBinding(result, mod, k[i]);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n\r\nexport function __classPrivateFieldIn(state, receiver) {\r\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\r\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\r\n}\r\n\r\nexport function __addDisposableResource(env, value, async) {\r\n if (value !== null && value !== void 0) {\r\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\r\n var dispose, inner;\r\n if (async) {\r\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\r\n dispose = value[Symbol.asyncDispose];\r\n }\r\n if (dispose === void 0) {\r\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\r\n dispose = value[Symbol.dispose];\r\n if (async) inner = dispose;\r\n }\r\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\r\n if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };\r\n env.stack.push({ value: value, dispose: dispose, async: async });\r\n }\r\n else if (async) {\r\n env.stack.push({ async: true });\r\n }\r\n return value;\r\n\r\n}\r\n\r\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\r\n var e = new Error(message);\r\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\r\n};\r\n\r\nexport function __disposeResources(env) {\r\n function fail(e) {\r\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\r\n env.hasError = true;\r\n }\r\n var r, s = 0;\r\n function next() {\r\n while (r = env.stack.pop()) {\r\n try {\r\n if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);\r\n if (r.dispose) {\r\n var result = r.dispose.call(r.value);\r\n if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\r\n }\r\n else s |= 1;\r\n }\r\n catch (e) {\r\n fail(e);\r\n }\r\n }\r\n if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();\r\n if (env.hasError) throw env.error;\r\n }\r\n return next();\r\n}\r\n\r\nexport function __rewriteRelativeImportExtension(path, preserveJsx) {\r\n if (typeof path === \"string\" && /^\\.\\.?\\//.test(path)) {\r\n return path.replace(/\\.(tsx)$|((?:\\.d)?)((?:\\.[^./]+?)?)\\.([cm]?)ts$/i, function (m, tsx, d, ext, cm) {\r\n return tsx ? preserveJsx ? \".jsx\" : \".js\" : d && (!ext || !cm) ? m : (d + ext + \".\" + cm.toLowerCase() + \"js\");\r\n });\r\n }\r\n return path;\r\n}\r\n\r\nexport default {\r\n __extends: __extends,\r\n __assign: __assign,\r\n __rest: __rest,\r\n __decorate: __decorate,\r\n __param: __param,\r\n __esDecorate: __esDecorate,\r\n __runInitializers: __runInitializers,\r\n __propKey: __propKey,\r\n __setFunctionName: __setFunctionName,\r\n __metadata: __metadata,\r\n __awaiter: __awaiter,\r\n __generator: __generator,\r\n __createBinding: __createBinding,\r\n __exportStar: __exportStar,\r\n __values: __values,\r\n __read: __read,\r\n __spread: __spread,\r\n __spreadArrays: __spreadArrays,\r\n __spreadArray: __spreadArray,\r\n __await: __await,\r\n __asyncGenerator: __asyncGenerator,\r\n __asyncDelegator: __asyncDelegator,\r\n __asyncValues: __asyncValues,\r\n __makeTemplateObject: __makeTemplateObject,\r\n __importStar: __importStar,\r\n __importDefault: __importDefault,\r\n __classPrivateFieldGet: __classPrivateFieldGet,\r\n __classPrivateFieldSet: __classPrivateFieldSet,\r\n __classPrivateFieldIn: __classPrivateFieldIn,\r\n __addDisposableResource: __addDisposableResource,\r\n __disposeResources: __disposeResources,\r\n __rewriteRelativeImportExtension: __rewriteRelativeImportExtension,\r\n};\r\n"],"names":[],"mappings":";;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AAsCA;AACO,SAAS,UAAU,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE;AAC1D,IAAI,IAAI,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,MAAM,GAAG,IAAI,KAAK,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC,wBAAwB,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,IAAI,EAAE,CAAC,CAAC;AACjI,IAAI,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,OAAO,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC,GAAG,OAAO,CAAC,QAAQ,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,CAAC,CAAC;AACnI,SAAS,KAAK,IAAI,CAAC,GAAG,UAAU,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE,IAAI,CAAC,GAAG,UAAU,CAAC,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,CAAC,CAAC;AACtJ,IAAI,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC;AAClE,CAAC;AAkDD;AACO,SAAS,UAAU,CAAC,WAAW,EAAE,aAAa,EAAE;AACvD,IAAI,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,OAAO,CAAC,QAAQ,KAAK,UAAU,EAAE,OAAO,OAAO,CAAC,QAAQ,CAAC,WAAW,EAAE,aAAa,CAAC,CAAC;AACnI,CAAC;AAuND;AACuB,OAAO,eAAe,KAAK,UAAU,GAAG,eAAe,GAAG,UAAU,KAAK,EAAE,UAAU,EAAE,OAAO,EAAE;AACvH,IAAI,IAAI,CAAC,GAAG,IAAI,KAAK,CAAC,OAAO,CAAC,CAAC;AAC/B,IAAI,OAAO,CAAC,CAAC,IAAI,GAAG,iBAAiB,EAAE,CAAC,CAAC,KAAK,GAAG,KAAK,EAAE,CAAC,CAAC,UAAU,GAAG,UAAU,EAAE,CAAC,CAAC;AACrF;;;;;","x_google_ignoreList":[0]}
@@ -0,0 +1,215 @@
1
+ 'use strict';
2
+
3
+ var common = require('@nestjs/common');
4
+ var swagger = require('@nestjs/swagger');
5
+ var classTransformer = require('class-transformer');
6
+ var controller_constant = require('../../constant/decorator/api/controller.constant.js');
7
+ var function_constant = require('../../constant/decorator/api/function.constant.js');
8
+ require('../../enum/decorator/api/action.enum.js');
9
+ require('../../enum/decorator/api/authentication-type.enum.js');
10
+ require('../../enum/decorator/api/controller/load-relations-strategy.enum.js');
11
+ require('../../enum/decorator/api/controller/request-transformer-type.enum.js');
12
+ var dtoType_enum = require('../../enum/decorator/api/dto-type.enum.js');
13
+ require('../../enum/decorator/api/function/type.enum.js');
14
+ require('../../enum/decorator/api/property/data-type.enum.js');
15
+ require('../../enum/decorator/api/property/date/identifier.enum.js');
16
+ require('../../enum/decorator/api/property/date/type.enum.js');
17
+ require('../../enum/decorator/api/property/desribe-type.enum.js');
18
+ require('../../enum/decorator/api/property/number-type.enum.js');
19
+ require('../../enum/decorator/api/property/string-type.enum.js');
20
+ var routeType_enum = require('../../enum/decorator/api/route-type.enum.js');
21
+ require('../../enum/exception.enum.js');
22
+ require('../../enum/filter-order-direction.enum.js');
23
+ require('../../enum/utility/error-string-action.enum.js');
24
+ var applyDecorators_utility = require('../../utility/api/controller/apply-decorators.utility.js');
25
+ var applyMetadata_utility = require('../../utility/api/controller/apply-metadata.utility.js');
26
+ var transformFilter_utility = require('../../utility/api/controller/get-list/transform-filter.utility.js');
27
+ var handleRequestRelations_utility = require('../../utility/api/controller/handle-request-relations.utility.js');
28
+ var transformData_utility = require('../../utility/api/controller/transform-data.utility.js');
29
+ var validateRequest_utility = require('../../utility/api/controller/validate-request.utility.js');
30
+ var writeDtoSwagger_utility = require('../../utility/api/controller/write-dto-swagger.utility.js');
31
+ var writeMethod_utility = require('../../utility/api/controller/write-method.utility.js');
32
+ require('typeorm');
33
+ require('reflect-metadata');
34
+ require('../../constant/utility/dto/constant.js');
35
+ var errorException_utility = require('../../utility/error-exception.utility.js');
36
+ require('../../external/tslib/tslib.es6.js');
37
+ require('class-validator');
38
+ require('lodash/random');
39
+ require('../../validator/all-or-none-of-listed-properties.validator.js');
40
+ require('../../validator/has-at-least-one-and-only-one-of-listed-properties.validator.js');
41
+ require('../../validator/has-at-least-one-of-listed-properties.validator.js');
42
+ require('../../validator/has-at-least-one-property.validator.js');
43
+ require('../../validator/is-regular-expression.validator.js');
44
+ require('../../validator/only-one-of-listed-properties.validator.js');
45
+ require('node:crypto');
46
+ var generate_utility = require('../../utility/dto/generate.utility.js');
47
+ var generateEntityInformation_utility = require('../../utility/generate-entity-information.utility.js');
48
+ require('../../utility/is-error-of-type.utility.js');
49
+ var getPrimaryColumn_utility = require('../../utility/api/controller/get-primary-column.utility.js');
50
+ var analize_utility = require('../../utility/dto/analize.utility.js');
51
+
52
+ class ApiControllerFactory {
53
+ get targetPrototype() {
54
+ return this.target.prototype;
55
+ }
56
+ constructor(target, properties) {
57
+ this.target = target;
58
+ this.properties = properties;
59
+ this.ENTITY = generateEntityInformation_utility.GenerateEntityInformation(properties.entity);
60
+ analize_utility.analyzeEntityMetadata(this.properties.entity);
61
+ if (!this.ENTITY.primaryKey) {
62
+ throw errorException_utility.ErrorException(`Primary key for entity ${this.properties.entity.name ?? "UnknownResource"} not found`);
63
+ }
64
+ common.Controller(this.properties.path ?? (this.properties.entity.name ? this.properties.entity.name.toLowerCase() : "UnknownResource"))(this.target);
65
+ swagger.ApiTags(this.properties.name ?? this.properties.entity.name ?? "UnknownResource")(this.target);
66
+ }
67
+ createMethod(method) {
68
+ if (!(method in this.properties.routes) || this.properties.routes[method]?.isEnabled !== false) {
69
+ const routeConfig = this.properties.routes[method] ?? {};
70
+ const routeDecorators = routeConfig.decorators ?? [];
71
+ const methodName = `${controller_constant.CONTROLLER_API_DECORATOR_CONSTANT.RESERVED_METHOD_PREFIX}${method}`;
72
+ writeMethod_utility.ApiControllerWriteMethod(this, this.targetPrototype, method, this.properties, this.ENTITY);
73
+ const targetMethod = this.targetPrototype[methodName];
74
+ applyMetadata_utility.ApiControllerApplyMetadata(this.target, this.targetPrototype, this.ENTITY, this.properties, method, methodName, routeConfig);
75
+ applyDecorators_utility.ApiControllerApplyDecorators(targetMethod, this.ENTITY, this.properties, method, methodName, routeConfig, routeDecorators);
76
+ writeDtoSwagger_utility.ApiControllerWriteDtoSwagger(this.target, this.ENTITY, this.properties, method, routeConfig, this.ENTITY);
77
+ }
78
+ }
79
+ init() {
80
+ for (const method of Object.values(routeType_enum.EApiRouteType)) {
81
+ this.createMethod(method);
82
+ }
83
+ }
84
+ [routeType_enum.EApiRouteType.CREATE](method, methodName, properties, entityMetadata) {
85
+ this.targetPrototype[methodName] = Object.defineProperty(async function (body, headers, ip, authenticationRequest) {
86
+ const primaryKey = getPrimaryColumn_utility.ApiControllerGetPrimaryColumn(body, entityMetadata);
87
+ if (!primaryKey) {
88
+ throw errorException_utility.ErrorException("Primary key not found in entity columns");
89
+ }
90
+ transformData_utility.ApiControllerTransformData(properties.routes[method]?.request?.transformers, properties, { body }, { authenticationRequest, headers, ip });
91
+ await validateRequest_utility.ApiControllerValidateRequest(properties.routes[method]?.request?.validators, properties, body);
92
+ await handleRequestRelations_utility.ApiControllerHandleRequestRelations(this, properties, properties.routes[method]?.request?.relations, body);
93
+ const createResponse = await this.service.create(body);
94
+ const dto = generate_utility.DtoGenerate(properties.entity, entityMetadata, method, dtoType_enum.EApiDtoType.RESPONSE, properties.routes[method]?.autoDto?.[dtoType_enum.EApiDtoType.RESPONSE], properties.routes[method]?.authentication?.guard);
95
+ const requestProperties = {
96
+ relations: properties.routes[method]?.response?.relations,
97
+ where: {
98
+ [primaryKey.key]: createResponse[primaryKey.key],
99
+ },
100
+ };
101
+ const response = await this.service.get(requestProperties);
102
+ transformData_utility.ApiControllerTransformData(properties.routes[method]?.response?.transformers, properties, { response }, { authenticationRequest, headers, ip });
103
+ return classTransformer.plainToInstance(dto, response, {
104
+ excludeExtraneousValues: true,
105
+ });
106
+ }, "name", { value: methodName });
107
+ }
108
+ [routeType_enum.EApiRouteType.DELETE](method, methodName, properties, entityMetadata) {
109
+ this.targetPrototype[methodName] = Object.defineProperty(async function (parameters, headers, ip, authenticationRequest) {
110
+ const primaryKey = getPrimaryColumn_utility.ApiControllerGetPrimaryColumn(parameters, entityMetadata);
111
+ if (!primaryKey) {
112
+ throw errorException_utility.ErrorException("Primary key not found in entity columns");
113
+ }
114
+ transformData_utility.ApiControllerTransformData(properties.routes[method]?.request?.transformers, properties, { parameters }, { authenticationRequest, headers, ip });
115
+ await validateRequest_utility.ApiControllerValidateRequest(properties.routes[method]?.request?.validators, properties, parameters);
116
+ await handleRequestRelations_utility.ApiControllerHandleRequestRelations(this, properties, properties.routes[method]?.request?.relations, parameters);
117
+ const requestCriteria = {
118
+ [primaryKey.key]: primaryKey.value,
119
+ };
120
+ await this.service.delete(requestCriteria);
121
+ }, "name", { value: methodName });
122
+ }
123
+ [routeType_enum.EApiRouteType.GET](method, methodName, properties, entityMetadata) {
124
+ this.targetPrototype[methodName] = Object.defineProperty(async function (parameters, headers, ip, authenticationRequest) {
125
+ const primaryKey = getPrimaryColumn_utility.ApiControllerGetPrimaryColumn(parameters, entityMetadata);
126
+ if (!primaryKey) {
127
+ throw errorException_utility.ErrorException("Primary key not found in entity columns");
128
+ }
129
+ transformData_utility.ApiControllerTransformData(properties.routes[method]?.request?.transformers, properties, { parameters }, { authenticationRequest, headers, ip });
130
+ await validateRequest_utility.ApiControllerValidateRequest(properties.routes[method]?.request?.validators, properties, parameters);
131
+ await handleRequestRelations_utility.ApiControllerHandleRequestRelations(this, properties, properties.routes[method]?.request?.relations, parameters);
132
+ const requestProperties = {
133
+ relations: properties.routes[method]?.response?.relations,
134
+ where: {
135
+ [primaryKey.key]: primaryKey.value,
136
+ },
137
+ };
138
+ const response = await this.service.get(requestProperties);
139
+ transformData_utility.ApiControllerTransformData(properties.routes[method]?.response?.transformers, properties, { response }, { authenticationRequest, headers, ip });
140
+ const dto = generate_utility.DtoGenerate(properties.entity, entityMetadata, method, dtoType_enum.EApiDtoType.RESPONSE, properties.routes[method]?.autoDto?.[dtoType_enum.EApiDtoType.RESPONSE], properties.routes[method]?.authentication?.guard);
141
+ return classTransformer.plainToInstance(dto, response, {
142
+ excludeExtraneousValues: true,
143
+ });
144
+ }, "name", { value: methodName });
145
+ }
146
+ [routeType_enum.EApiRouteType.GET_LIST](method, methodName, properties, entityMetadata) {
147
+ this.targetPrototype[methodName] = Object.defineProperty(async function (query, headers, ip, authenticationRequest) {
148
+ transformData_utility.ApiControllerTransformData(properties.routes[method]?.request?.transformers, properties, { query }, { authenticationRequest, headers, ip });
149
+ await validateRequest_utility.ApiControllerValidateRequest(properties.routes[method]?.request?.validators, properties, query);
150
+ await handleRequestRelations_utility.ApiControllerHandleRequestRelations(this, properties, properties.routes[method]?.request?.relations, query);
151
+ const { limit, orderBy, orderDirection, page, ...getListQuery } = query;
152
+ const filter = transformFilter_utility.ApiControllerGetListTransformFilter(getListQuery, entityMetadata);
153
+ const requestProperties = {
154
+ relations: properties.routes[method]?.response?.relations,
155
+ skip: query.limit * (query.page - 1),
156
+ take: query.limit,
157
+ where: filter,
158
+ };
159
+ if (orderBy) {
160
+ requestProperties.order = {
161
+ [orderBy]: orderDirection ?? function_constant.FUNCTION_API_DECORATOR_CONSTANT.DEFAULT_FILTER_ORDER_BY_DIRECTION,
162
+ };
163
+ }
164
+ const response = await this.service.getList(requestProperties);
165
+ transformData_utility.ApiControllerTransformData(properties.routes[method]?.request?.transformers, properties, { response }, { authenticationRequest, headers, ip });
166
+ const dto = generate_utility.DtoGenerate(properties.entity, entityMetadata, method, dtoType_enum.EApiDtoType.RESPONSE, properties.routes[method]?.autoDto?.[dtoType_enum.EApiDtoType.RESPONSE], properties.routes[method]?.authentication?.guard);
167
+ return classTransformer.plainToInstance(dto, response, {
168
+ excludeExtraneousValues: true,
169
+ });
170
+ }, "name", { value: methodName });
171
+ }
172
+ [routeType_enum.EApiRouteType.PARTIAL_UPDATE](method, methodName, properties, entityMetadata) {
173
+ this.targetPrototype[methodName] = Object.defineProperty(async function (parameters, body, headers, ip, authenticationRequest) {
174
+ const primaryKey = getPrimaryColumn_utility.ApiControllerGetPrimaryColumn(parameters, entityMetadata);
175
+ if (!primaryKey) {
176
+ throw errorException_utility.ErrorException("Primary key not found in entity columns");
177
+ }
178
+ transformData_utility.ApiControllerTransformData(properties.routes[method]?.request?.transformers, properties, { body, parameters }, { authenticationRequest, headers, ip });
179
+ await validateRequest_utility.ApiControllerValidateRequest(properties.routes[method]?.request?.validators, properties, parameters);
180
+ await handleRequestRelations_utility.ApiControllerHandleRequestRelations(this, properties, properties.routes[method]?.request?.relations, parameters);
181
+ const requestCriteria = {
182
+ [primaryKey.key]: primaryKey.value,
183
+ };
184
+ const response = await this.service.update(requestCriteria, body);
185
+ transformData_utility.ApiControllerTransformData(properties.routes[method]?.request?.transformers, properties, { response }, { authenticationRequest, headers, ip });
186
+ const dto = generate_utility.DtoGenerate(properties.entity, entityMetadata, method, dtoType_enum.EApiDtoType.RESPONSE, properties.routes[method]?.autoDto?.[dtoType_enum.EApiDtoType.RESPONSE], properties.routes[method]?.authentication?.guard);
187
+ return classTransformer.plainToInstance(dto, response, {
188
+ excludeExtraneousValues: true,
189
+ });
190
+ }, "name", { value: methodName });
191
+ }
192
+ [routeType_enum.EApiRouteType.UPDATE](method, methodName, properties, entityMetadata) {
193
+ this.targetPrototype[methodName] = Object.defineProperty(async function (parameters, body, headers, ip, authenticationRequest) {
194
+ const primaryKey = getPrimaryColumn_utility.ApiControllerGetPrimaryColumn(parameters, entityMetadata);
195
+ if (!primaryKey) {
196
+ throw errorException_utility.ErrorException("Primary key not found in entity columns");
197
+ }
198
+ transformData_utility.ApiControllerTransformData(properties.routes[method]?.request?.transformers, properties, { body, parameters }, { authenticationRequest, headers, ip });
199
+ await validateRequest_utility.ApiControllerValidateRequest(properties.routes[method]?.request?.validators, properties, parameters);
200
+ await handleRequestRelations_utility.ApiControllerHandleRequestRelations(this, properties, properties.routes[method]?.request?.relations, parameters);
201
+ const requestCriteria = {
202
+ [primaryKey.key]: primaryKey.value,
203
+ };
204
+ const response = await this.service.update(requestCriteria, body);
205
+ transformData_utility.ApiControllerTransformData(properties.routes[method]?.request?.transformers, properties, { response }, { authenticationRequest, headers, ip });
206
+ const dto = generate_utility.DtoGenerate(properties.entity, entityMetadata, method, dtoType_enum.EApiDtoType.RESPONSE, properties.routes[method]?.autoDto?.[dtoType_enum.EApiDtoType.RESPONSE], properties.routes[method]?.authentication?.guard);
207
+ return classTransformer.plainToInstance(dto, response, {
208
+ excludeExtraneousValues: true,
209
+ });
210
+ }, "name", { value: methodName });
211
+ }
212
+ }
213
+
214
+ exports.ApiControllerFactory = ApiControllerFactory;
215
+ //# sourceMappingURL=controller.factory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"controller.factory.js","sources":["../../../../../src/factory/api/controller.factory.ts"],"sourcesContent":[null],"names":["GenerateEntityInformation","analyzeEntityMetadata","ErrorException","Controller","ApiTags","CONTROLLER_API_DECORATOR_CONSTANT","ApiControllerWriteMethod","ApiControllerApplyMetadata","ApiControllerApplyDecorators","ApiControllerWriteDtoSwagger","EApiRouteType","ApiControllerGetPrimaryColumn","ApiControllerTransformData","ApiControllerValidateRequest","ApiControllerHandleRequestRelations","DtoGenerate","EApiDtoType","plainToInstance","ApiControllerGetListTransformFilter","FUNCTION_API_DECORATOR_CONSTANT"],"mappings":"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"}