rez_core 6.6.6 → 7.0.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 (1067) hide show
  1. package/.claude/settings.local.json +26 -0
  2. package/.idea/250218_nodejs_core.iml +9 -0
  3. package/.idea/codeStyles/Project.xml +59 -0
  4. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  5. package/.idea/copilot.data.migration.agent.xml +6 -0
  6. package/.idea/copilot.data.migration.ask.xml +6 -0
  7. package/.idea/copilot.data.migration.ask2agent.xml +6 -0
  8. package/.idea/copilot.data.migration.edit.xml +6 -0
  9. package/.idea/inspectionProfiles/Project_Default.xml +6 -0
  10. package/.idea/misc.xml +6 -0
  11. package/.idea/modules.xml +8 -0
  12. package/.idea/prettier.xml +6 -0
  13. package/.idea/vcs.xml +6 -0
  14. package/.prettierrc +3 -3
  15. package/README.md +99 -99
  16. package/dist/app.controller.js.map +1 -1
  17. package/dist/app.module.js +4 -10
  18. package/dist/app.module.js.map +1 -1
  19. package/dist/constant/attribute.constant.d.ts +8 -0
  20. package/dist/constant/attribute.constant.js +14 -0
  21. package/dist/constant/attribute.constant.js.map +1 -0
  22. package/dist/constant/db-data-type.constant.d.ts +33 -0
  23. package/dist/constant/db-data-type.constant.js +119 -0
  24. package/dist/constant/db-data-type.constant.js.map +1 -0
  25. package/dist/constant/entity.constant.d.ts +4 -0
  26. package/dist/constant/entity.constant.js +9 -0
  27. package/dist/constant/entity.constant.js.map +1 -0
  28. package/dist/constant/status.constant.d.ts +4 -0
  29. package/dist/constant/status.constant.js +9 -0
  30. package/dist/constant/status.constant.js.map +1 -0
  31. package/dist/core.module.js +55 -42
  32. package/dist/core.module.js.map +1 -1
  33. package/dist/module/auth/auth.module.d.ts +6 -1
  34. package/dist/module/auth/auth.module.js +29 -7
  35. package/dist/module/auth/auth.module.js.map +1 -1
  36. package/dist/module/{user/entity/user.entity.d.ts → auth/dto/user.dto.d.ts} +13 -5
  37. package/dist/module/auth/dto/user.dto.js +7 -0
  38. package/dist/module/auth/dto/user.dto.js.map +1 -0
  39. package/dist/module/auth/services/auth.service.d.ts +1 -1
  40. package/dist/module/auth/strategies/jwt.strategy.d.ts +6 -2
  41. package/dist/module/auth/strategies/jwt.strategy.js +18 -4
  42. package/dist/module/auth/strategies/jwt.strategy.js.map +1 -1
  43. package/dist/module/dashboard/controller/dashboard.controller.d.ts +7 -7
  44. package/dist/module/dashboard/dashboard.module.js +0 -2
  45. package/dist/module/dashboard/dashboard.module.js.map +1 -1
  46. package/dist/module/dashboard/entity/dashboard_page_data.entity.d.ts +0 -1
  47. package/dist/module/dashboard/entity/dashboard_page_data.entity.js +1 -6
  48. package/dist/module/dashboard/entity/dashboard_page_data.entity.js.map +1 -1
  49. package/dist/module/dashboard/entity/widget_master.entity.d.ts +0 -1
  50. package/dist/module/dashboard/entity/widget_master.entity.js +1 -6
  51. package/dist/module/dashboard/entity/widget_master.entity.js.map +1 -1
  52. package/dist/module/dashboard/service/dashboard.service.d.ts +8 -10
  53. package/dist/module/dashboard/service/dashboard.service.js +3 -18
  54. package/dist/module/dashboard/service/dashboard.service.js.map +1 -1
  55. package/dist/module/eav/controller/eav.controller.d.ts +21 -0
  56. package/dist/module/eav/controller/eav.controller.js +127 -0
  57. package/dist/module/eav/controller/eav.controller.js.map +1 -0
  58. package/dist/module/eav/dto/eav-operation.dto.d.ts +20 -0
  59. package/dist/module/eav/dto/eav-operation.dto.js +75 -0
  60. package/dist/module/eav/dto/eav-operation.dto.js.map +1 -0
  61. package/dist/module/eav/eav.module.d.ts +2 -0
  62. package/dist/module/eav/eav.module.js +84 -0
  63. package/dist/module/eav/eav.module.js.map +1 -0
  64. package/dist/module/eav/entity/eav-boolean.entity.d.ts +9 -0
  65. package/dist/module/eav/entity/eav-boolean.entity.js +48 -0
  66. package/dist/module/eav/entity/eav-boolean.entity.js.map +1 -0
  67. package/dist/module/eav/entity/eav-date.entity.d.ts +9 -0
  68. package/dist/module/eav/entity/eav-date.entity.js +48 -0
  69. package/dist/module/eav/entity/eav-date.entity.js.map +1 -0
  70. package/dist/module/eav/entity/eav-decimal.entity.d.ts +9 -0
  71. package/dist/module/eav/entity/eav-decimal.entity.js +48 -0
  72. package/dist/module/eav/entity/eav-decimal.entity.js.map +1 -0
  73. package/dist/module/eav/entity/eav-int.entity.d.ts +9 -0
  74. package/dist/module/eav/entity/eav-int.entity.js +48 -0
  75. package/dist/module/eav/entity/eav-int.entity.js.map +1 -0
  76. package/dist/module/eav/entity/eav-json.entity.d.ts +9 -0
  77. package/dist/module/eav/entity/eav-json.entity.js +48 -0
  78. package/dist/module/eav/entity/eav-json.entity.js.map +1 -0
  79. package/dist/module/eav/entity/eav-text.entity.d.ts +9 -0
  80. package/dist/module/eav/entity/eav-text.entity.js +48 -0
  81. package/dist/module/eav/entity/eav-text.entity.js.map +1 -0
  82. package/dist/module/eav/entity/eav-time.entity.d.ts +9 -0
  83. package/dist/module/eav/entity/eav-time.entity.js +48 -0
  84. package/dist/module/eav/entity/eav-time.entity.js.map +1 -0
  85. package/dist/module/eav/entity/eav-timestamp.entity.d.ts +9 -0
  86. package/dist/module/eav/entity/eav-timestamp.entity.js +48 -0
  87. package/dist/module/eav/entity/eav-timestamp.entity.js.map +1 -0
  88. package/dist/module/eav/entity/eav-varchar.entity.d.ts +9 -0
  89. package/dist/module/eav/entity/eav-varchar.entity.js +48 -0
  90. package/dist/module/eav/entity/eav-varchar.entity.js.map +1 -0
  91. package/dist/module/eav/interface/eav-strategy.interface.d.ts +8 -0
  92. package/dist/module/eav/interface/eav-strategy.interface.js +3 -0
  93. package/dist/module/eav/interface/eav-strategy.interface.js.map +1 -0
  94. package/dist/module/eav/repository/eav-boolean.repository.d.ts +13 -0
  95. package/dist/module/eav/repository/eav-boolean.repository.js +57 -0
  96. package/dist/module/eav/repository/eav-boolean.repository.js.map +1 -0
  97. package/dist/module/eav/repository/eav-date.repository.d.ts +13 -0
  98. package/dist/module/eav/repository/eav-date.repository.js +57 -0
  99. package/dist/module/eav/repository/eav-date.repository.js.map +1 -0
  100. package/dist/module/eav/repository/eav-decimal.repository.d.ts +13 -0
  101. package/dist/module/eav/repository/eav-decimal.repository.js +57 -0
  102. package/dist/module/eav/repository/eav-decimal.repository.js.map +1 -0
  103. package/dist/module/eav/repository/eav-int.repository.d.ts +13 -0
  104. package/dist/module/eav/repository/eav-int.repository.js +57 -0
  105. package/dist/module/eav/repository/eav-int.repository.js.map +1 -0
  106. package/dist/module/eav/repository/eav-json.repository.d.ts +13 -0
  107. package/dist/module/eav/repository/eav-json.repository.js +57 -0
  108. package/dist/module/eav/repository/eav-json.repository.js.map +1 -0
  109. package/dist/module/eav/repository/eav-text.repository.d.ts +13 -0
  110. package/dist/module/eav/repository/eav-text.repository.js +57 -0
  111. package/dist/module/eav/repository/eav-text.repository.js.map +1 -0
  112. package/dist/module/eav/repository/eav-time.repository.d.ts +13 -0
  113. package/dist/module/eav/repository/eav-time.repository.js +57 -0
  114. package/dist/module/eav/repository/eav-time.repository.js.map +1 -0
  115. package/dist/module/eav/repository/eav-timestamp.repository.d.ts +13 -0
  116. package/dist/module/eav/repository/eav-timestamp.repository.js +57 -0
  117. package/dist/module/eav/repository/eav-timestamp.repository.js.map +1 -0
  118. package/dist/module/eav/repository/eav-varchar.repository.d.ts +13 -0
  119. package/dist/module/eav/repository/eav-varchar.repository.js +57 -0
  120. package/dist/module/eav/repository/eav-varchar.repository.js.map +1 -0
  121. package/dist/module/eav/service/eav-boolean.service.d.ts +12 -0
  122. package/dist/module/eav/service/eav-boolean.service.js +59 -0
  123. package/dist/module/eav/service/eav-boolean.service.js.map +1 -0
  124. package/dist/module/eav/service/eav-date.service.d.ts +12 -0
  125. package/dist/module/eav/service/eav-date.service.js +59 -0
  126. package/dist/module/eav/service/eav-date.service.js.map +1 -0
  127. package/dist/module/eav/service/eav-decimal.service.d.ts +12 -0
  128. package/dist/module/eav/service/eav-decimal.service.js +59 -0
  129. package/dist/module/eav/service/eav-decimal.service.js.map +1 -0
  130. package/dist/module/eav/service/eav-factory.service.d.ts +26 -0
  131. package/dist/module/eav/service/eav-factory.service.js +81 -0
  132. package/dist/module/eav/service/eav-factory.service.js.map +1 -0
  133. package/dist/module/eav/service/eav-int.service.d.ts +12 -0
  134. package/dist/module/eav/service/eav-int.service.js +59 -0
  135. package/dist/module/eav/service/eav-int.service.js.map +1 -0
  136. package/dist/module/eav/service/eav-json.service.d.ts +12 -0
  137. package/dist/module/eav/service/eav-json.service.js +59 -0
  138. package/dist/module/eav/service/eav-json.service.js.map +1 -0
  139. package/dist/module/eav/service/eav-text.service.d.ts +12 -0
  140. package/dist/module/eav/service/eav-text.service.js +59 -0
  141. package/dist/module/eav/service/eav-text.service.js.map +1 -0
  142. package/dist/module/eav/service/eav-time.service.d.ts +12 -0
  143. package/dist/module/eav/service/eav-time.service.js +59 -0
  144. package/dist/module/eav/service/eav-time.service.js.map +1 -0
  145. package/dist/module/eav/service/eav-timestamp.service.d.ts +12 -0
  146. package/dist/module/eav/service/eav-timestamp.service.js +59 -0
  147. package/dist/module/eav/service/eav-timestamp.service.js.map +1 -0
  148. package/dist/module/eav/service/eav-varchar.service.d.ts +12 -0
  149. package/dist/module/eav/service/eav-varchar.service.js +59 -0
  150. package/dist/module/eav/service/eav-varchar.service.js.map +1 -0
  151. package/dist/module/eav/service/eav.service.d.ts +14 -0
  152. package/dist/module/eav/service/eav.service.js +65 -0
  153. package/dist/module/eav/service/eav.service.js.map +1 -0
  154. package/dist/module/entity_json/controller/entity_json.controller.d.ts +2 -5
  155. package/dist/module/entity_json/controller/entity_json.controller.js +7 -21
  156. package/dist/module/entity_json/controller/entity_json.controller.js.map +1 -1
  157. package/dist/module/entity_json/service/entity_json.service.d.ts +10 -2
  158. package/dist/module/entity_json/service/entity_json.service.js +102 -95
  159. package/dist/module/entity_json/service/entity_json.service.js.map +1 -1
  160. package/dist/module/export/service/export.service.js +5 -0
  161. package/dist/module/export/service/export.service.js.map +1 -1
  162. package/dist/module/filter/controller/filter.controller.d.ts +1 -12
  163. package/dist/module/filter/controller/filter.controller.js +3 -2
  164. package/dist/module/filter/controller/filter.controller.js.map +1 -1
  165. package/dist/module/filter/dto/filter-request.dto.d.ts +2 -1
  166. package/dist/module/filter/entity/saved-filter-detail.entity.d.ts +0 -1
  167. package/dist/module/filter/entity/saved-filter-detail.entity.js +1 -7
  168. package/dist/module/filter/entity/saved-filter-detail.entity.js.map +1 -1
  169. package/dist/module/filter/entity/saved-filter-master.entity.d.ts +0 -1
  170. package/dist/module/filter/entity/saved-filter-master.entity.js +1 -7
  171. package/dist/module/filter/entity/saved-filter-master.entity.js.map +1 -1
  172. package/dist/module/filter/filter.module.js +2 -11
  173. package/dist/module/filter/filter.module.js.map +1 -1
  174. package/dist/module/filter/repository/saved-filter.repository.d.ts +1 -1
  175. package/dist/module/filter/repository/saved-filter.repository.js +2 -4
  176. package/dist/module/filter/repository/saved-filter.repository.js.map +1 -1
  177. package/dist/module/filter/service/filter.service.d.ts +5 -38
  178. package/dist/module/filter/service/filter.service.js +134 -88
  179. package/dist/module/filter/service/filter.service.js.map +1 -1
  180. package/dist/module/filter/service/saved-filter.service.d.ts +3 -4
  181. package/dist/module/filter/service/saved-filter.service.js +18 -15
  182. package/dist/module/filter/service/saved-filter.service.js.map +1 -1
  183. package/dist/module/integration/examples/usage.example.js +9 -9
  184. package/dist/module/integration/service/integration.service.d.ts +1 -6
  185. package/dist/module/integration/service/integration.service.js +4 -18
  186. package/dist/module/integration/service/integration.service.js.map +1 -1
  187. package/dist/module/integration/service/oauth.service.js +0 -2
  188. package/dist/module/integration/service/oauth.service.js.map +1 -1
  189. package/dist/module/integration/service/wrapper.service.js +0 -1
  190. package/dist/module/integration/service/wrapper.service.js.map +1 -1
  191. package/dist/module/integration/strategies/email/gmail-api.strategy.js +7 -23
  192. package/dist/module/integration/strategies/email/gmail-api.strategy.js.map +1 -1
  193. package/dist/module/integration/strategies/email/sendgrid-api.strategy.js +5 -8
  194. package/dist/module/integration/strategies/email/sendgrid-api.strategy.js.map +1 -1
  195. package/dist/module/layout/controller/layout.controller.d.ts +1 -3
  196. package/dist/module/layout/controller/layout.controller.js +3 -7
  197. package/dist/module/layout/controller/layout.controller.js.map +1 -1
  198. package/dist/module/layout/entity/header-items.entity.js +1 -1
  199. package/dist/module/layout/entity/header-section.entity.d.ts +0 -2
  200. package/dist/module/layout/entity/header-section.entity.js +1 -9
  201. package/dist/module/layout/entity/header-section.entity.js.map +1 -1
  202. package/dist/module/layout/layout.module.js +1 -2
  203. package/dist/module/layout/layout.module.js.map +1 -1
  204. package/dist/module/layout/repository/header-section.repository.d.ts +0 -1
  205. package/dist/module/layout/repository/header-section.repository.js +0 -5
  206. package/dist/module/layout/repository/header-section.repository.js.map +1 -1
  207. package/dist/module/layout/service/header-section.service.d.ts +1 -1
  208. package/dist/module/layout/service/header-section.service.js +1 -1
  209. package/dist/module/layout/service/header-section.service.js.map +1 -1
  210. package/dist/module/layout_preference/service/layout_preference.service.d.ts +1 -1
  211. package/dist/module/linked_attributes/controller/linked_attributes.controller.d.ts +1 -0
  212. package/dist/module/linked_attributes/service/linked_attributes.service.d.ts +2 -2
  213. package/dist/module/linked_attributes/service/linked_attributes.service.js +3 -4
  214. package/dist/module/linked_attributes/service/linked_attributes.service.js.map +1 -1
  215. package/dist/module/listmaster/controller/list-master.controller.d.ts +0 -1
  216. package/dist/module/listmaster/controller/list-master.controller.js +0 -19
  217. package/dist/module/listmaster/controller/list-master.controller.js.map +1 -1
  218. package/dist/module/listmaster/entity/list-master-items.entity.d.ts +0 -4
  219. package/dist/module/listmaster/entity/list-master-items.entity.js +2 -20
  220. package/dist/module/listmaster/entity/list-master-items.entity.js.map +1 -1
  221. package/dist/module/listmaster/entity/list-master.entity.d.ts +1 -4
  222. package/dist/module/listmaster/entity/list-master.entity.js +5 -19
  223. package/dist/module/listmaster/entity/list-master.entity.js.map +1 -1
  224. package/dist/module/listmaster/repository/list-master-items.repository.d.ts +2 -2
  225. package/dist/module/listmaster/repository/list-master-items.repository.js +68 -25
  226. package/dist/module/listmaster/repository/list-master-items.repository.js.map +1 -1
  227. package/dist/module/listmaster/service/list-master-item.service.d.ts +1 -1
  228. package/dist/module/listmaster/service/list-master-item.service.js +129 -48
  229. package/dist/module/listmaster/service/list-master-item.service.js.map +1 -1
  230. package/dist/module/listmaster/service/list-master.service.d.ts +17 -13
  231. package/dist/module/listmaster/service/list-master.service.js +228 -135
  232. package/dist/module/listmaster/service/list-master.service.js.map +1 -1
  233. package/dist/module/mapper/entity/field-lovs.entity.d.ts +0 -1
  234. package/dist/module/mapper/entity/field-lovs.entity.js +1 -6
  235. package/dist/module/mapper/entity/field-lovs.entity.js.map +1 -1
  236. package/dist/module/mapper/entity/field-mapper.entity.d.ts +0 -1
  237. package/dist/module/mapper/entity/field-mapper.entity.js +1 -6
  238. package/dist/module/mapper/entity/field-mapper.entity.js.map +1 -1
  239. package/dist/module/mapper/entity/mapper.entity.d.ts +0 -2
  240. package/dist/module/mapper/entity/mapper.entity.js +1 -10
  241. package/dist/module/mapper/entity/mapper.entity.js.map +1 -1
  242. package/dist/module/mapper/service/field-mapper.service.d.ts +1 -1
  243. package/dist/module/mapper/service/field-mapper.service.js +0 -1
  244. package/dist/module/mapper/service/field-mapper.service.js.map +1 -1
  245. package/dist/module/master/controller/master.controller.d.ts +1 -3
  246. package/dist/module/master/controller/master.controller.js +4 -6
  247. package/dist/module/master/controller/master.controller.js.map +1 -1
  248. package/dist/module/master/service/master.service.d.ts +1 -1
  249. package/dist/module/master/service/master.service.js +30 -44
  250. package/dist/module/master/service/master.service.js.map +1 -1
  251. package/dist/module/meta/controller/attribute-master.controller.d.ts +3 -8
  252. package/dist/module/meta/controller/attribute-master.controller.js +5 -19
  253. package/dist/module/meta/controller/attribute-master.controller.js.map +1 -1
  254. package/dist/module/meta/controller/entity-dynamic.controller.js +6 -3
  255. package/dist/module/meta/controller/entity-dynamic.controller.js.map +1 -1
  256. package/dist/module/meta/controller/entity-master.controller.js +1 -0
  257. package/dist/module/meta/controller/entity-master.controller.js.map +1 -1
  258. package/dist/module/meta/controller/entity.controller.js +3 -3
  259. package/dist/module/meta/controller/entity.controller.js.map +1 -1
  260. package/dist/module/meta/controller/entity.public.controller.js +1 -0
  261. package/dist/module/meta/controller/entity.public.controller.js.map +1 -1
  262. package/dist/module/meta/controller/media.controller.d.ts +0 -6
  263. package/dist/module/meta/controller/media.controller.js +0 -27
  264. package/dist/module/meta/controller/media.controller.js.map +1 -1
  265. package/dist/module/meta/controller/meta.controller.d.ts +1 -6
  266. package/dist/module/meta/controller/meta.controller.js +2 -19
  267. package/dist/module/meta/controller/meta.controller.js.map +1 -1
  268. package/dist/module/meta/entity/attribute-master.entity.d.ts +12 -14
  269. package/dist/module/meta/entity/attribute-master.entity.js +41 -77
  270. package/dist/module/meta/entity/attribute-master.entity.js.map +1 -1
  271. package/dist/module/meta/entity/base-entity.entity.d.ts +6 -7
  272. package/dist/module/meta/entity/base-entity.entity.js +24 -47
  273. package/dist/module/meta/entity/base-entity.entity.js.map +1 -1
  274. package/dist/module/meta/entity/dynamic.entity.d.ts +3 -0
  275. package/dist/module/{enterprise/service/brand.service.js → meta/entity/dynamic.entity.js} +9 -9
  276. package/dist/module/meta/entity/dynamic.entity.js.map +1 -0
  277. package/dist/module/meta/entity/entity-master.entity.d.ts +6 -9
  278. package/dist/module/meta/entity/entity-master.entity.js +21 -66
  279. package/dist/module/meta/entity/entity-master.entity.js.map +1 -1
  280. package/dist/module/meta/entity/entity-relation-data.entity.d.ts +0 -1
  281. package/dist/module/meta/entity/entity-relation-data.entity.js +1 -7
  282. package/dist/module/meta/entity/entity-relation-data.entity.js.map +1 -1
  283. package/dist/module/meta/entity/entity-relation.entity.d.ts +0 -1
  284. package/dist/module/meta/entity/entity-relation.entity.js +1 -7
  285. package/dist/module/meta/entity/entity-relation.entity.js.map +1 -1
  286. package/dist/module/meta/entity/entity-table-column.entity.d.ts +0 -1
  287. package/dist/module/meta/entity/entity-table-column.entity.js +1 -7
  288. package/dist/module/meta/entity/entity-table-column.entity.js.map +1 -1
  289. package/dist/module/meta/entity/entity-table.entity.d.ts +0 -1
  290. package/dist/module/meta/entity/entity-table.entity.js +1 -7
  291. package/dist/module/meta/entity/entity-table.entity.js.map +1 -1
  292. package/dist/module/meta/entity/media-data.entity.d.ts +0 -2
  293. package/dist/module/meta/entity/media-data.entity.js +0 -8
  294. package/dist/module/meta/entity/media-data.entity.js.map +1 -1
  295. package/dist/module/meta/entity/preference.entity.d.ts +0 -1
  296. package/dist/module/meta/entity/preference.entity.js +1 -7
  297. package/dist/module/meta/entity/preference.entity.js.map +1 -1
  298. package/dist/module/meta/entity/view-master.entity.d.ts +0 -1
  299. package/dist/module/meta/entity/view-master.entity.js +1 -7
  300. package/dist/module/meta/entity/view-master.entity.js.map +1 -1
  301. package/dist/module/meta/entity.module.js +9 -23
  302. package/dist/module/meta/entity.module.js.map +1 -1
  303. package/dist/module/meta/repository/attribute-master.repository.d.ts +9 -3
  304. package/dist/module/meta/repository/attribute-master.repository.js +41 -15
  305. package/dist/module/meta/repository/attribute-master.repository.js.map +1 -1
  306. package/dist/module/meta/repository/entity-master.repository.js +1 -1
  307. package/dist/module/meta/repository/entity-master.repository.js.map +1 -1
  308. package/dist/module/meta/repository/entity-relation.repository.d.ts +1 -0
  309. package/dist/module/meta/repository/entity-relation.repository.js +10 -0
  310. package/dist/module/meta/repository/entity-relation.repository.js.map +1 -1
  311. package/dist/module/meta/service/attribute-master.service.d.ts +7 -7
  312. package/dist/module/meta/service/attribute-master.service.js +74 -49
  313. package/dist/module/meta/service/attribute-master.service.js.map +1 -1
  314. package/dist/module/meta/service/entity-dynamic.service.d.ts +13 -14
  315. package/dist/module/meta/service/entity-dynamic.service.js +215 -80
  316. package/dist/module/meta/service/entity-dynamic.service.js.map +1 -1
  317. package/dist/module/meta/service/entity-master.service.d.ts +10 -1
  318. package/dist/module/meta/service/entity-master.service.js +80 -3
  319. package/dist/module/meta/service/entity-master.service.js.map +1 -1
  320. package/dist/module/meta/service/entity-relation.service.d.ts +6 -5
  321. package/dist/module/meta/service/entity-relation.service.js +7 -10
  322. package/dist/module/meta/service/entity-relation.service.js.map +1 -1
  323. package/dist/module/meta/service/entity-service-impl.service.d.ts +4 -4
  324. package/dist/module/meta/service/entity-service-impl.service.js +14 -18
  325. package/dist/module/meta/service/entity-service-impl.service.js.map +1 -1
  326. package/dist/module/meta/service/entity-table.service.d.ts +4 -5
  327. package/dist/module/meta/service/entity-table.service.js +24 -45
  328. package/dist/module/meta/service/entity-table.service.js.map +1 -1
  329. package/dist/module/meta/service/entity-validation.service.d.ts +1 -3
  330. package/dist/module/meta/service/entity-validation.service.js +5 -34
  331. package/dist/module/meta/service/entity-validation.service.js.map +1 -1
  332. package/dist/module/meta/service/entity.service.d.ts +2 -2
  333. package/dist/module/meta/service/field-group.service.d.ts +1 -1
  334. package/dist/module/meta/service/media-data.service.d.ts +0 -4
  335. package/dist/module/meta/service/media-data.service.js +0 -129
  336. package/dist/module/meta/service/media-data.service.js.map +1 -1
  337. package/dist/module/meta/service/resolver.service.d.ts +2 -2
  338. package/dist/module/meta/service/resolver.service.js +55 -95
  339. package/dist/module/meta/service/resolver.service.js.map +1 -1
  340. package/dist/module/meta/service/section-master.service.d.ts +1 -1
  341. package/dist/module/meta/service/view-master.service.d.ts +1 -1
  342. package/dist/module/module/module.module.d.ts +0 -2
  343. package/dist/module/module/module.module.js +0 -54
  344. package/dist/module/module/module.module.js.map +1 -1
  345. package/dist/module/notification/entity/notification.entity.d.ts +17 -2
  346. package/dist/module/notification/entity/notification.entity.js +68 -2
  347. package/dist/module/notification/entity/notification.entity.js.map +1 -1
  348. package/dist/module/notification/notification.module.js +3 -12
  349. package/dist/module/notification/notification.module.js.map +1 -1
  350. package/dist/module/notification/service/email.service.d.ts +1 -0
  351. package/dist/module/notification/service/email.service.js +14 -0
  352. package/dist/module/notification/service/email.service.js.map +1 -1
  353. package/dist/module/notification/service/notification.service.d.ts +1 -5
  354. package/dist/module/notification/service/notification.service.js +41 -31
  355. package/dist/module/notification/service/notification.service.js.map +1 -1
  356. package/dist/module/preference_master/entity/preference.entity.d.ts +9 -0
  357. package/dist/module/{module/entity/module-access.entity.js → preference_master/entity/preference.entity.js} +24 -24
  358. package/dist/module/preference_master/entity/preference.entity.js.map +1 -0
  359. package/dist/module/preference_master/preference.service.d.ts +8 -0
  360. package/dist/module/{enterprise/service/enterprise.service.js → preference_master/preference.service.js} +14 -14
  361. package/dist/module/preference_master/preference.service.js.map +1 -0
  362. package/dist/module/preference_master/repo/preference.repository.d.ts +8 -0
  363. package/dist/module/{user/repository/userSession.repository.js → preference_master/repo/preference.repository.js} +25 -22
  364. package/dist/module/preference_master/repo/preference.repository.js.map +1 -0
  365. package/dist/module/user/entity/user-role-mapping.entity.d.ts +0 -12
  366. package/dist/module/user/entity/user-role-mapping.entity.js +0 -62
  367. package/dist/module/user/entity/user-role-mapping.entity.js.map +1 -1
  368. package/dist/module/workflow/controller/activity-log.controller.d.ts +5 -6
  369. package/dist/module/workflow/entity/action-category.entity.d.ts +0 -1
  370. package/dist/module/workflow/entity/action-category.entity.js +1 -7
  371. package/dist/module/workflow/entity/action-category.entity.js.map +1 -1
  372. package/dist/module/workflow/entity/action-data.entity.d.ts +0 -1
  373. package/dist/module/workflow/entity/action-data.entity.js +1 -6
  374. package/dist/module/workflow/entity/action-data.entity.js.map +1 -1
  375. package/dist/module/workflow/entity/action-resources-mapping.entity.d.ts +0 -1
  376. package/dist/module/workflow/entity/action-resources-mapping.entity.js +1 -7
  377. package/dist/module/workflow/entity/action-resources-mapping.entity.js.map +1 -1
  378. package/dist/module/workflow/entity/action-template-mapping.entity.d.ts +0 -1
  379. package/dist/module/workflow/entity/action-template-mapping.entity.js +1 -7
  380. package/dist/module/workflow/entity/action-template-mapping.entity.js.map +1 -1
  381. package/dist/module/workflow/entity/action.entity.d.ts +0 -1
  382. package/dist/module/workflow/entity/action.entity.js +1 -7
  383. package/dist/module/workflow/entity/action.entity.js.map +1 -1
  384. package/dist/module/workflow/entity/activity-log.entity.d.ts +0 -1
  385. package/dist/module/workflow/entity/activity-log.entity.js +1 -6
  386. package/dist/module/workflow/entity/activity-log.entity.js.map +1 -1
  387. package/dist/module/workflow/entity/comm-template.entity.d.ts +0 -1
  388. package/dist/module/workflow/entity/comm-template.entity.js +1 -7
  389. package/dist/module/workflow/entity/comm-template.entity.js.map +1 -1
  390. package/dist/module/workflow/entity/entity-modification.entity.d.ts +0 -1
  391. package/dist/module/workflow/entity/entity-modification.entity.js +1 -7
  392. package/dist/module/workflow/entity/entity-modification.entity.js.map +1 -1
  393. package/dist/module/workflow/entity/form.entity.d.ts +0 -1
  394. package/dist/module/workflow/entity/form.entity.js +1 -6
  395. package/dist/module/workflow/entity/form.entity.js.map +1 -1
  396. package/dist/module/workflow/entity/stage-action-mapping.entity.d.ts +0 -1
  397. package/dist/module/workflow/entity/stage-action-mapping.entity.js +1 -7
  398. package/dist/module/workflow/entity/stage-action-mapping.entity.js.map +1 -1
  399. package/dist/module/workflow/entity/stage-group.entity.d.ts +0 -1
  400. package/dist/module/workflow/entity/stage-group.entity.js +1 -7
  401. package/dist/module/workflow/entity/stage-group.entity.js.map +1 -1
  402. package/dist/module/workflow/entity/stage-movement-data.entity.d.ts +0 -1
  403. package/dist/module/workflow/entity/stage-movement-data.entity.js +1 -7
  404. package/dist/module/workflow/entity/stage-movement-data.entity.js.map +1 -1
  405. package/dist/module/workflow/entity/stage.entity.d.ts +0 -1
  406. package/dist/module/workflow/entity/stage.entity.js +1 -7
  407. package/dist/module/workflow/entity/stage.entity.js.map +1 -1
  408. package/dist/module/workflow/entity/task-data.entity.d.ts +0 -1
  409. package/dist/module/workflow/entity/task-data.entity.js +1 -6
  410. package/dist/module/workflow/entity/task-data.entity.js.map +1 -1
  411. package/dist/module/workflow/entity/workflow-data.entity.d.ts +0 -1
  412. package/dist/module/workflow/entity/workflow-data.entity.js +1 -10
  413. package/dist/module/workflow/entity/workflow-data.entity.js.map +1 -1
  414. package/dist/module/workflow/entity/workflow.entity.d.ts +0 -1
  415. package/dist/module/workflow/entity/workflow.entity.js +1 -7
  416. package/dist/module/workflow/entity/workflow.entity.js.map +1 -1
  417. package/dist/module/workflow/repository/action-category.repository.js.map +1 -1
  418. package/dist/module/workflow/repository/action-data.repository.d.ts +2 -2
  419. package/dist/module/workflow/repository/action-data.repository.js +9 -17
  420. package/dist/module/workflow/repository/action-data.repository.js.map +1 -1
  421. package/dist/module/workflow/repository/action.repository.d.ts +2 -2
  422. package/dist/module/workflow/repository/action.repository.js +12 -12
  423. package/dist/module/workflow/repository/action.repository.js.map +1 -1
  424. package/dist/module/workflow/repository/activity-log.repository.d.ts +5 -6
  425. package/dist/module/workflow/repository/comm-template.repository.js +2 -2
  426. package/dist/module/workflow/repository/comm-template.repository.js.map +1 -1
  427. package/dist/module/workflow/repository/form-master.repository.d.ts +2 -2
  428. package/dist/module/workflow/repository/form-master.repository.js +2 -2
  429. package/dist/module/workflow/repository/form-master.repository.js.map +1 -1
  430. package/dist/module/workflow/repository/stage-group.repository.d.ts +6 -6
  431. package/dist/module/workflow/repository/stage-movement.repository.d.ts +1 -1
  432. package/dist/module/workflow/repository/stage.repository.d.ts +5 -6
  433. package/dist/module/workflow/repository/stage.repository.js +8 -8
  434. package/dist/module/workflow/repository/task.repository.d.ts +1 -1
  435. package/dist/module/workflow/repository/task.repository.js +5 -5
  436. package/dist/module/workflow/repository/task.repository.js.map +1 -1
  437. package/dist/module/workflow/repository/workflow.repository.js +1 -1
  438. package/dist/module/workflow/repository/workflow.repository.js.map +1 -1
  439. package/dist/module/workflow/service/action-category.service.js.map +1 -1
  440. package/dist/module/workflow/service/action-data.service.d.ts +1 -1
  441. package/dist/module/workflow/service/action-data.service.js +1 -2
  442. package/dist/module/workflow/service/action-data.service.js.map +1 -1
  443. package/dist/module/workflow/service/action-template-mapping.service.js +2 -2
  444. package/dist/module/workflow/service/action.service.d.ts +1 -1
  445. package/dist/module/workflow/service/action.service.js +15 -17
  446. package/dist/module/workflow/service/action.service.js.map +1 -1
  447. package/dist/module/workflow/service/activity-log.service.d.ts +6 -7
  448. package/dist/module/workflow/service/activity-log.service.js.map +1 -1
  449. package/dist/module/workflow/service/comm-template.service.d.ts +1 -1
  450. package/dist/module/workflow/service/comm-template.service.js +0 -2
  451. package/dist/module/workflow/service/comm-template.service.js.map +1 -1
  452. package/dist/module/workflow/service/entity-modification.service.d.ts +1 -1
  453. package/dist/module/workflow/service/entity-modification.service.js +2 -3
  454. package/dist/module/workflow/service/entity-modification.service.js.map +1 -1
  455. package/dist/module/workflow/service/form-master.service.d.ts +1 -1
  456. package/dist/module/workflow/service/form-master.service.js +2 -2
  457. package/dist/module/workflow/service/form-master.service.js.map +1 -1
  458. package/dist/module/workflow/service/populate-workflow.service.d.ts +2 -6
  459. package/dist/module/workflow/service/populate-workflow.service.js +6 -17
  460. package/dist/module/workflow/service/populate-workflow.service.js.map +1 -1
  461. package/dist/module/workflow/service/stage-group.service.d.ts +1 -1
  462. package/dist/module/workflow/service/stage.service.d.ts +1 -1
  463. package/dist/module/workflow/service/stage.service.js.map +1 -1
  464. package/dist/module/workflow/service/task.service.d.ts +1 -1
  465. package/dist/module/workflow/service/task.service.js +10 -13
  466. package/dist/module/workflow/service/task.service.js.map +1 -1
  467. package/dist/module/workflow/service/workflow-meta.service.d.ts +1 -1
  468. package/dist/module/workflow/service/workflow-meta.service.js +2 -7
  469. package/dist/module/workflow/service/workflow-meta.service.js.map +1 -1
  470. package/dist/module/workflow/service/workflow.service.d.ts +1 -1
  471. package/dist/module/workflow/service/workflow.service.js +2 -2
  472. package/dist/module/workflow/service/workflow.service.js.map +1 -1
  473. package/dist/module/workflow-automation/entity/workflow-automation.entity.d.ts +1 -3
  474. package/dist/module/workflow-automation/entity/workflow-automation.entity.js +1 -9
  475. package/dist/module/workflow-automation/entity/workflow-automation.entity.js.map +1 -1
  476. package/dist/module/workflow-automation/service/schedule-handler.service.js +11 -12
  477. package/dist/module/workflow-automation/service/schedule-handler.service.js.map +1 -1
  478. package/dist/module/workflow-automation/service/workflow-automation.service.d.ts +8 -10
  479. package/dist/module/workflow-automation/service/workflow-automation.service.js +18 -15
  480. package/dist/module/workflow-automation/service/workflow-automation.service.js.map +1 -1
  481. package/dist/module/workflow-automation/workflow-automation.module.js +3 -1
  482. package/dist/module/workflow-automation/workflow-automation.module.js.map +1 -1
  483. package/dist/module/workflow-schedule/interfaces/schedule-job-data.interface.d.ts +2 -3
  484. package/dist/module/workflow-schedule/processors/schedule.processor.js +5 -9
  485. package/dist/module/workflow-schedule/processors/schedule.processor.js.map +1 -1
  486. package/dist/module/workflow-schedule/service/workflow-schedule.service.d.ts +1 -1
  487. package/dist/module/workflow-schedule/service/workflow-schedule.service.js +4 -13
  488. package/dist/module/workflow-schedule/service/workflow-schedule.service.js.map +1 -1
  489. package/dist/table.config.d.ts +2 -23
  490. package/dist/table.config.js +21 -33
  491. package/dist/table.config.js.map +1 -1
  492. package/dist/tsconfig.build.tsbuildinfo +1 -1
  493. package/dist/utils/service/reflection-helper.service.js +2 -2
  494. package/docs/modules/event-driven-integration-design.md +91 -91
  495. package/docs/modules/integration.md +250 -250
  496. package/eslint.config.mjs +34 -34
  497. package/nest-cli.json +14 -14
  498. package/package.json +128 -125
  499. package/server.log +850 -0
  500. package/src/app.controller.ts +12 -13
  501. package/src/app.module.ts +62 -68
  502. package/src/app.service.ts +8 -8
  503. package/src/config/bull.config.ts +69 -69
  504. package/src/config/config.module.ts +17 -17
  505. package/src/config/database.config.ts +48 -48
  506. package/src/constant/attribute.constant.ts +9 -0
  507. package/src/constant/db-data-type.constant.ts +160 -0
  508. package/src/constant/entity.constant.ts +4 -0
  509. package/src/constant/global.constant.ts +67 -67
  510. package/src/constant/status.constant.ts +4 -0
  511. package/src/core.module.ts +96 -94
  512. package/src/decorators/roles.decorator.ts +7 -7
  513. package/src/dtos/response.dto.ts +6 -6
  514. package/src/dtos/response.ts +5 -5
  515. package/src/index.ts +1 -1
  516. package/src/module/auth/auth.module.ts +72 -49
  517. package/src/module/auth/controller/auth.controller.ts +28 -28
  518. package/src/module/auth/dto/user.dto.ts +56 -0
  519. package/src/module/auth/guards/google-auth.guard.ts +9 -9
  520. package/src/module/auth/guards/jwt.guard.ts +22 -22
  521. package/src/module/auth/services/auth.service.ts +56 -56
  522. package/src/module/auth/services/jwt.service.ts +11 -11
  523. package/src/module/auth/strategies/google.strategy.ts +54 -54
  524. package/src/module/auth/strategies/jwt.strategy.ts +64 -58
  525. package/src/module/auth/strategies/local.strategy.ts +13 -13
  526. package/src/module/dashboard/controller/dashboard.controller.ts +38 -38
  527. package/src/module/dashboard/dashboard.module.ts +19 -21
  528. package/src/module/dashboard/entity/dashboard_page_data.entity.ts +23 -27
  529. package/src/module/dashboard/entity/widget_master.entity.ts +15 -18
  530. package/src/module/dashboard/repository/dashboard.repository.ts +49 -49
  531. package/src/module/dashboard/service/dashboard.service.ts +69 -72
  532. package/src/module/eav/EAV_USAGE_GUIDE.md +351 -0
  533. package/src/module/eav/controller/eav.controller.ts +119 -0
  534. package/src/module/eav/dto/eav-operation.dto.ts +62 -0
  535. package/src/module/eav/eav.module.ts +80 -0
  536. package/src/module/eav/entity/eav-boolean.entity.ts +26 -0
  537. package/src/module/eav/entity/eav-date.entity.ts +25 -0
  538. package/src/module/eav/entity/eav-decimal.entity.ts +25 -0
  539. package/src/module/eav/entity/eav-int.entity.ts +25 -0
  540. package/src/module/eav/entity/eav-json.entity.ts +25 -0
  541. package/src/module/eav/entity/eav-text.entity.ts +25 -0
  542. package/src/module/eav/entity/eav-time.entity.ts +25 -0
  543. package/src/module/eav/entity/eav-timestamp.entity.ts +25 -0
  544. package/src/module/eav/entity/eav-varchar.entity.ts +25 -0
  545. package/src/module/eav/interface/eav-strategy.interface.ts +32 -0
  546. package/src/module/eav/repository/eav-boolean.repository.ts +67 -0
  547. package/src/module/eav/repository/eav-date.repository.ts +67 -0
  548. package/src/module/eav/repository/eav-decimal.repository.ts +67 -0
  549. package/src/module/eav/repository/eav-int.repository.ts +67 -0
  550. package/src/module/eav/repository/eav-json.repository.ts +67 -0
  551. package/src/module/eav/repository/eav-text.repository.ts +67 -0
  552. package/src/module/eav/repository/eav-time.repository.ts +67 -0
  553. package/src/module/eav/repository/eav-timestamp.repository.ts +67 -0
  554. package/src/module/eav/repository/eav-varchar.repository.ts +67 -0
  555. package/src/module/eav/service/eav-boolean.service.ts +64 -0
  556. package/src/module/eav/service/eav-date.service.ts +64 -0
  557. package/src/module/eav/service/eav-decimal.service.ts +64 -0
  558. package/src/module/eav/service/eav-factory.service.ts +93 -0
  559. package/src/module/eav/service/eav-int.service.ts +64 -0
  560. package/src/module/eav/service/eav-json.service.ts +64 -0
  561. package/src/module/eav/service/eav-text.service.ts +64 -0
  562. package/src/module/eav/service/eav-time.service.ts +64 -0
  563. package/src/module/eav/service/eav-timestamp.service.ts +64 -0
  564. package/src/module/eav/service/eav-varchar.service.ts +65 -0
  565. package/src/module/eav/service/eav.service.ts +116 -0
  566. package/src/module/entity_json/controller/entity_json.controller.ts +75 -60
  567. package/src/module/entity_json/docs/FlatJson_Filterin_System.md +2803 -2803
  568. package/src/module/entity_json/entity/entityJson.entity.ts +42 -42
  569. package/src/module/entity_json/entity_json.module.ts +22 -22
  570. package/src/module/entity_json/service/entityJson.repository.ts +37 -37
  571. package/src/module/entity_json/service/entity_json.service.ts +492 -486
  572. package/src/module/export/controller/export.controller.ts +83 -83
  573. package/src/module/export/export.module.ts +14 -14
  574. package/src/module/export/service/export.service.ts +107 -105
  575. package/src/module/filter/controller/filter.controller.ts +89 -87
  576. package/src/module/filter/dto/filter-request.dto.ts +41 -39
  577. package/src/module/filter/entity/saved-filter-detail.entity.ts +37 -41
  578. package/src/module/filter/entity/saved-filter-master.entity.ts +30 -35
  579. package/src/module/filter/filter.module.ts +33 -42
  580. package/src/module/filter/repository/saved-filter.repository.ts +247 -249
  581. package/src/module/filter/repository/saved.filter-detail.repository.ts +19 -19
  582. package/src/module/filter/service/filter-evaluator.service.ts +82 -82
  583. package/src/module/filter/service/filter.service.ts +1389 -1406
  584. package/src/module/filter/service/saved-filter.service.ts +164 -154
  585. package/src/module/ics/controller/ics.controller.ts +21 -21
  586. package/src/module/ics/dto/ics.dto.ts +55 -55
  587. package/src/module/ics/ics.module.ts +13 -13
  588. package/src/module/ics/service/ics.service.ts +57 -57
  589. package/src/module/integration/controller/calender-event.controller.ts +31 -31
  590. package/src/module/integration/controller/integration.controller.ts +662 -662
  591. package/src/module/integration/controller/wrapper.controller.ts +37 -37
  592. package/src/module/integration/dto/create-config.dto.ts +526 -526
  593. package/src/module/integration/entity/integration-config.entity.ts +112 -112
  594. package/src/module/integration/entity/integration-entity-mapper.entity.ts +14 -14
  595. package/src/module/integration/entity/integration-source.entity.ts +17 -17
  596. package/src/module/integration/entity/user-integration.entity.ts +71 -71
  597. package/src/module/integration/examples/usage.example.ts +338 -338
  598. package/src/module/integration/factories/base.factory.ts +7 -7
  599. package/src/module/integration/factories/email.factory.ts +49 -49
  600. package/src/module/integration/factories/integration.factory.ts +121 -121
  601. package/src/module/integration/factories/sms.factory.ts +51 -51
  602. package/src/module/integration/factories/telephone.factory.ts +41 -41
  603. package/src/module/integration/factories/whatsapp.factory.ts +56 -56
  604. package/src/module/integration/integration.module.ts +110 -110
  605. package/src/module/integration/service/calendar-event.service.ts +118 -118
  606. package/src/module/integration/service/integration-entity-mapper.service.ts +17 -17
  607. package/src/module/integration/service/integration-queue.service.ts +229 -229
  608. package/src/module/integration/service/integration.service.ts +2632 -2653
  609. package/src/module/integration/service/oauth.service.ts +224 -226
  610. package/src/module/integration/service/wrapper.service.ts +753 -754
  611. package/src/module/integration/strategies/email/gmail-api.strategy.ts +281 -307
  612. package/src/module/integration/strategies/email/outlook-api.strategy.ts +44 -44
  613. package/src/module/integration/strategies/email/outlook.strategy.ts +64 -64
  614. package/src/module/integration/strategies/email/sendgrid-api.strategy.ts +260 -263
  615. package/src/module/integration/strategies/integration.strategy.ts +97 -97
  616. package/src/module/integration/strategies/sms/gupshup-sms.strategy.ts +146 -146
  617. package/src/module/integration/strategies/sms/msg91-sms.strategy.ts +164 -164
  618. package/src/module/integration/strategies/sms/tubelight-sms.strategy.ts +163 -163
  619. package/src/module/integration/strategies/telephone/ozonetel-voice.strategy.ts +238 -238
  620. package/src/module/integration/strategies/telephone/tubelight-voice.strategy.ts +210 -210
  621. package/src/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.ts +359 -359
  622. package/src/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.ts +372 -372
  623. package/src/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.ts +403 -403
  624. package/src/module/integration/strategies/whatsapp/whatsapp.strategy.ts +57 -57
  625. package/src/module/layout/controller/layout.controller.ts +38 -47
  626. package/src/module/layout/entity/header-items.entity.ts +28 -28
  627. package/src/module/layout/entity/header-section.entity.ts +13 -19
  628. package/src/module/layout/layout.module.ts +20 -21
  629. package/src/module/layout/repository/header-items.repository.ts +18 -18
  630. package/src/module/layout/repository/header-section.repository.ts +16 -22
  631. package/src/module/layout/service/header-section.service.ts +25 -25
  632. package/src/module/layout_preference/controller/layout_preference.controller.ts +76 -76
  633. package/src/module/layout_preference/entity/layout_preference.entity.ts +28 -28
  634. package/src/module/layout_preference/layout_preference.module.ts +22 -22
  635. package/src/module/layout_preference/repository/layout_preference.repository.ts +65 -65
  636. package/src/module/layout_preference/service/layout_preference.service.ts +191 -191
  637. package/src/module/linked_attributes/controller/linked_attributes.controller.ts +137 -137
  638. package/src/module/linked_attributes/dto/create-linked-attribute-smart.dto.ts +54 -54
  639. package/src/module/linked_attributes/entity/linked_attribute.entity.ts +51 -51
  640. package/src/module/linked_attributes/linked_attributes.module.ts +23 -23
  641. package/src/module/linked_attributes/repository/linked_attribute.repository.ts +12 -12
  642. package/src/module/linked_attributes/service/linked_attributes.service.ts +648 -648
  643. package/src/module/linked_attributes/test/linked-attributes.service.spec.ts +244 -244
  644. package/src/module/listmaster/controller/list-master.controller.ts +206 -230
  645. package/src/module/listmaster/entity/list-master-items.entity.ts +30 -43
  646. package/src/module/listmaster/entity/list-master.entity.ts +23 -33
  647. package/src/module/listmaster/listmaster.module.ts +46 -46
  648. package/src/module/listmaster/repository/list-master-items.repository.ts +225 -173
  649. package/src/module/listmaster/repository/list-master.repository.ts +56 -56
  650. package/src/module/listmaster/service/list-master-engine.ts +19 -19
  651. package/src/module/listmaster/service/list-master-extension.interface.ts +4 -4
  652. package/src/module/listmaster/service/list-master-item.service.ts +382 -280
  653. package/src/module/listmaster/service/list-master-registry.ts +15 -15
  654. package/src/module/listmaster/service/list-master.service.ts +767 -527
  655. package/src/module/mapper/controller/field-mapper.controller.ts +76 -76
  656. package/src/module/mapper/controller/mapper.controller.ts +20 -20
  657. package/src/module/mapper/dto/field-mapper.dto.ts +14 -14
  658. package/src/module/mapper/entity/field-lovs.entity.ts +15 -19
  659. package/src/module/mapper/entity/field-mapper.entity.ts +49 -53
  660. package/src/module/mapper/entity/mapper.entity.ts +9 -16
  661. package/src/module/mapper/mapper.module.ts +35 -35
  662. package/src/module/mapper/repository/field-lovs.repository.ts +35 -35
  663. package/src/module/mapper/repository/field-mapper.repository.ts +42 -42
  664. package/src/module/mapper/repository/mapper.repository.ts +32 -32
  665. package/src/module/mapper/service/field-mapper.service.ts +268 -269
  666. package/src/module/mapper/service/mapper.service.ts +80 -80
  667. package/src/module/master/controller/master.controller.ts +71 -74
  668. package/src/module/master/service/master.service.ts +460 -484
  669. package/src/module/meta/controller/attribute-master.controller.ts +82 -96
  670. package/src/module/meta/controller/entity-dynamic.controller.ts +123 -125
  671. package/src/module/meta/controller/entity-master.controller.ts +41 -41
  672. package/src/module/meta/controller/entity-relation.controller.ts +36 -36
  673. package/src/module/meta/controller/entity.controller.ts +301 -308
  674. package/src/module/meta/controller/entity.public.controller.ts +76 -75
  675. package/src/module/meta/controller/media.controller.ts +135 -167
  676. package/src/module/meta/controller/meta.controller.ts +80 -101
  677. package/src/module/meta/controller/view-master.controller.ts +79 -79
  678. package/src/module/meta/dto/entity-list-data.dto.ts +6 -6
  679. package/src/module/meta/dto/entity-tab.dto.ts +4 -4
  680. package/src/module/meta/dto/entity-table.dto.ts +12 -12
  681. package/src/module/meta/entity/attribute-master.entity.ts +62 -92
  682. package/src/module/meta/entity/base-entity.entity.ts +52 -75
  683. package/src/module/meta/entity/dynamic.entity.ts +6 -0
  684. package/src/module/meta/entity/entity-master.entity.ts +53 -91
  685. package/src/module/meta/entity/entity-relation-data.entity.ts +24 -29
  686. package/src/module/meta/entity/entity-relation.entity.ts +18 -23
  687. package/src/module/meta/entity/entity-table-column.entity.ts +56 -61
  688. package/src/module/meta/entity/entity-table.entity.ts +45 -50
  689. package/src/module/meta/entity/media-data.entity.ts +32 -38
  690. package/src/module/meta/entity/preference.entity.ts +57 -62
  691. package/src/module/meta/entity/view-master.entity.ts +36 -41
  692. package/src/module/meta/entity.module.ts +148 -165
  693. package/src/module/meta/repository/attribute-master.repository.ts +206 -164
  694. package/src/module/meta/repository/entity-attribute-update.repository.ts +48 -48
  695. package/src/module/meta/repository/entity-master.repository.ts +120 -120
  696. package/src/module/meta/repository/entity-relation.repository.ts +36 -22
  697. package/src/module/meta/repository/entity-table-column.repository.ts +39 -39
  698. package/src/module/meta/repository/entity-table.repository.ts +53 -53
  699. package/src/module/meta/repository/media-data.repository.ts +50 -50
  700. package/src/module/meta/repository/preference.repository.ts +20 -20
  701. package/src/module/meta/repository/user-app-mapping.repository.ts +28 -28
  702. package/src/module/meta/repository/view-master.repository.ts +42 -42
  703. package/src/module/meta/service/attribute-master.service.ts +254 -160
  704. package/src/module/meta/service/common.service.ts +9 -9
  705. package/src/module/meta/service/entity-attribute-update.service.ts +26 -26
  706. package/src/module/meta/service/entity-dynamic.service.ts +993 -835
  707. package/src/module/meta/service/entity-master.service.ts +288 -172
  708. package/src/module/meta/service/entity-realation-data.service.ts +9 -9
  709. package/src/module/meta/service/entity-relation.service.ts +85 -78
  710. package/src/module/meta/service/entity-service-impl.service.ts +394 -389
  711. package/src/module/meta/service/entity-table-column.service.ts +26 -26
  712. package/src/module/meta/service/entity-table.service.ts +157 -171
  713. package/src/module/meta/service/entity-validation.service.ts +187 -188
  714. package/src/module/meta/service/entity.service.ts +48 -48
  715. package/src/module/meta/service/field-group.service.ts +103 -103
  716. package/src/module/meta/service/media-data.service.ts +385 -610
  717. package/src/module/meta/service/preference.service.ts +16 -16
  718. package/src/module/meta/service/resolver.service.ts +260 -347
  719. package/src/module/meta/service/section-master.service.ts +104 -104
  720. package/src/module/meta/service/update-form-json.service.ts +22 -22
  721. package/src/module/meta/service/user-app-mapping.service.ts +17 -17
  722. package/src/module/meta/service/view-master.service.ts +127 -127
  723. package/src/module/microservice-client/microservice-clients.module.ts +13 -13
  724. package/src/module/microservice-client/service/microservice-client-factory.ts +37 -37
  725. package/src/module/microservice-client/service/microservice-clients.ts +4 -4
  726. package/src/module/module/module.module.ts +0 -42
  727. package/src/module/notification/controller/notification.controller.ts +58 -58
  728. package/src/module/notification/entity/notification.entity.ts +76 -26
  729. package/src/module/notification/entity/otp.entity.ts +28 -28
  730. package/src/module/notification/firebase-admin.config.ts +22 -22
  731. package/src/module/notification/notification.module.ts +63 -71
  732. package/src/module/notification/repository/otp.repository.ts +27 -27
  733. package/src/module/notification/service/email.service.ts +142 -127
  734. package/src/module/notification/service/notification.service.ts +163 -146
  735. package/src/module/preference_master/entity/preference.entity.ts +25 -0
  736. package/src/module/preference_master/preference.service.ts +27 -0
  737. package/src/module/preference_master/repo/preference.repository.ts +36 -0
  738. package/src/module/third-party-module/entity/third-party-api-registry.entity.ts +52 -52
  739. package/src/module/third-party-module/repository/third-party-api-registry.repository.ts +20 -20
  740. package/src/module/third-party-module/service/api-registry.service.ts +13 -13
  741. package/src/module/third-party-module/third-party.module.ts +12 -12
  742. package/src/module/user/entity/user-role-mapping.entity.ts +0 -38
  743. package/src/module/workflow/controller/action-category.controller.ts +54 -54
  744. package/src/module/workflow/controller/action-resource-mapping.controller.ts +23 -23
  745. package/src/module/workflow/controller/action-template-mapping.controller.ts +35 -35
  746. package/src/module/workflow/controller/action.controller.ts +111 -111
  747. package/src/module/workflow/controller/activity-log.controller.ts +55 -55
  748. package/src/module/workflow/controller/comm-template.controller.ts +43 -43
  749. package/src/module/workflow/controller/entity-modification.controller.ts +35 -35
  750. package/src/module/workflow/controller/form-master.controller.ts +43 -43
  751. package/src/module/workflow/controller/stage-group.controller.ts +49 -49
  752. package/src/module/workflow/controller/stage.controller.ts +51 -51
  753. package/src/module/workflow/controller/task.controller.ts +77 -77
  754. package/src/module/workflow/controller/workflow-list-master.controller.ts +44 -44
  755. package/src/module/workflow/controller/workflow-meta.controller.ts +80 -80
  756. package/src/module/workflow/controller/workflow.controller.ts +67 -67
  757. package/src/module/workflow/entity/action-category.entity.ts +33 -38
  758. package/src/module/workflow/entity/action-data.entity.ts +51 -55
  759. package/src/module/workflow/entity/action-resources-mapping.entity.ts +21 -29
  760. package/src/module/workflow/entity/action-template-mapping.entity.ts +12 -17
  761. package/src/module/workflow/entity/action.entity.ts +48 -53
  762. package/src/module/workflow/entity/activity-log.entity.ts +39 -43
  763. package/src/module/workflow/entity/comm-template.entity.ts +38 -43
  764. package/src/module/workflow/entity/entity-modification.entity.ts +33 -38
  765. package/src/module/workflow/entity/form.entity.ts +21 -25
  766. package/src/module/workflow/entity/stage-action-mapping.entity.ts +12 -17
  767. package/src/module/workflow/entity/stage-group.entity.ts +18 -23
  768. package/src/module/workflow/entity/stage-movement-data.entity.ts +33 -38
  769. package/src/module/workflow/entity/stage.entity.ts +15 -20
  770. package/src/module/workflow/entity/task-data.entity.ts +84 -88
  771. package/src/module/workflow/entity/template-attach-mapper.entity.ts +30 -30
  772. package/src/module/workflow/entity/workflow-data.entity.ts +6 -11
  773. package/src/module/workflow/entity/workflow-level-mapping.entity.ts +18 -18
  774. package/src/module/workflow/entity/workflow.entity.ts +15 -20
  775. package/src/module/workflow/repository/action-category.repository.ts +78 -79
  776. package/src/module/workflow/repository/action-data.repository.ts +345 -354
  777. package/src/module/workflow/repository/action.repository.ts +339 -339
  778. package/src/module/workflow/repository/activity-log.repository.ts +148 -148
  779. package/src/module/workflow/repository/comm-template.repository.ts +157 -157
  780. package/src/module/workflow/repository/form-master.repository.ts +50 -50
  781. package/src/module/workflow/repository/stage-group.repository.ts +186 -186
  782. package/src/module/workflow/repository/stage-movement.repository.ts +217 -217
  783. package/src/module/workflow/repository/stage.repository.ts +160 -160
  784. package/src/module/workflow/repository/task.repository.ts +154 -156
  785. package/src/module/workflow/repository/workflow.repository.ts +42 -42
  786. package/src/module/workflow/service/action-category.service.ts +32 -33
  787. package/src/module/workflow/service/action-data.service.ts +62 -62
  788. package/src/module/workflow/service/action-resources-mapping.service.ts +10 -10
  789. package/src/module/workflow/service/action-template-mapping.service.ts +137 -137
  790. package/src/module/workflow/service/action.service.ts +300 -302
  791. package/src/module/workflow/service/activity-log.service.ts +106 -107
  792. package/src/module/workflow/service/comm-template.service.ts +179 -181
  793. package/src/module/workflow/service/entity-modification.service.ts +55 -61
  794. package/src/module/workflow/service/form-master.service.ts +35 -35
  795. package/src/module/workflow/service/populate-workflow.service.ts +313 -325
  796. package/src/module/workflow/service/stage-action-mapping.service.ts +5 -5
  797. package/src/module/workflow/service/stage-group.service.ts +325 -325
  798. package/src/module/workflow/service/stage.service.ts +196 -197
  799. package/src/module/workflow/service/task.service.ts +547 -551
  800. package/src/module/workflow/service/workflow-list-master.service.ts +68 -68
  801. package/src/module/workflow/service/workflow-meta.service.ts +635 -640
  802. package/src/module/workflow/service/workflow.service.ts +212 -213
  803. package/src/module/workflow/workflow.module.ts +180 -180
  804. package/src/module/workflow-automation/SCHEDULING_GUIDE.md +145 -145
  805. package/src/module/workflow-automation/controller/workflow-automation.controller.ts +43 -43
  806. package/src/module/workflow-automation/entity/workflow-automation-action.entity.ts +26 -26
  807. package/src/module/workflow-automation/entity/workflow-automation.entity.ts +35 -40
  808. package/src/module/workflow-automation/interface/action.decorator.ts +7 -7
  809. package/src/module/workflow-automation/interface/action.interface.ts +5 -5
  810. package/src/module/workflow-automation/service/action-registery.service.ts +35 -35
  811. package/src/module/workflow-automation/service/schedule-handler.service.ts +167 -168
  812. package/src/module/workflow-automation/service/workflow-automation-engine.service.ts +219 -219
  813. package/src/module/workflow-automation/service/workflow-automation.service.ts +486 -474
  814. package/src/module/workflow-automation/workflow-automation.module.ts +55 -54
  815. package/src/module/workflow-schedule/INSTALLATION.md +244 -244
  816. package/src/module/workflow-schedule/MULTI_PROJECT_GUIDE.md +196 -196
  817. package/src/module/workflow-schedule/README.md +422 -422
  818. package/src/module/workflow-schedule/constants/schedule.constants.ts +48 -48
  819. package/src/module/workflow-schedule/controller/workflow-schedule.controller.ts +253 -253
  820. package/src/module/workflow-schedule/docs/CLAUDE_CODE_GUIDE.md +510 -510
  821. package/src/module/workflow-schedule/docs/CLAUDE_CODE_PROMPT.md +362 -362
  822. package/src/module/workflow-schedule/docs/RUN_CLAUDE_CODE.sh +68 -68
  823. package/src/module/workflow-schedule/dto/create-schedule.dto.ts +147 -147
  824. package/src/module/workflow-schedule/dto/get-execution-logs.dto.ts +119 -119
  825. package/src/module/workflow-schedule/dto/update-schedule.dto.ts +96 -96
  826. package/src/module/workflow-schedule/entities/scheduled-workflow.entity.ts +148 -148
  827. package/src/module/workflow-schedule/entities/workflow-execution-log.entity.ts +154 -154
  828. package/src/module/workflow-schedule/interfaces/schedule-job-data.interface.ts +51 -53
  829. package/src/module/workflow-schedule/interfaces/workflow-schedule-options.interface.ts +12 -12
  830. package/src/module/workflow-schedule/processors/schedule.processor.ts +616 -620
  831. package/src/module/workflow-schedule/service/workflow-schedule.service.ts +588 -597
  832. package/src/module/workflow-schedule/workflow-schedule.module.ts +67 -67
  833. package/src/resources/dev.properties.yaml +34 -31
  834. package/src/resources/local.properties.yaml +27 -27
  835. package/src/resources/properties.module.ts +12 -12
  836. package/src/resources/properties.yaml.ts +11 -11
  837. package/src/resources/uat.properties.yaml +31 -31
  838. package/src/table.config.ts +123 -135
  839. package/src/utils/dto/excel-data.dto.ts +14 -14
  840. package/src/utils/dto/excelsheet-data.dto.ts +5 -5
  841. package/src/utils/service/base64util.service.ts +18 -18
  842. package/src/utils/service/clockIDGenUtil.service.ts +21 -21
  843. package/src/utils/service/codeGenerator.service.ts +22 -22
  844. package/src/utils/service/dateUtil.service.ts +17 -17
  845. package/src/utils/service/encryptUtil.service.ts +97 -97
  846. package/src/utils/service/excel-helper.service.ts +72 -72
  847. package/src/utils/service/excelUtil.service.ts +15 -15
  848. package/src/utils/service/file-util.service.ts +11 -11
  849. package/src/utils/service/json-util.service.ts +23 -23
  850. package/src/utils/service/loggingUtil.service.ts +88 -88
  851. package/src/utils/service/reflection-helper.service.ts +62 -62
  852. package/src/utils/service/wbsCodeGen.service.ts +8 -8
  853. package/src/utils/utils.module.ts +27 -27
  854. package/tsconfig.build.json +4 -4
  855. package/tsconfig.json +24 -24
  856. package/dist/migrations/1732612800000-AddEntityJsonGinIndex.d.ts +0 -6
  857. package/dist/migrations/1732612800000-AddEntityJsonGinIndex.js +0 -32
  858. package/dist/migrations/1732612800000-AddEntityJsonGinIndex.js.map +0 -1
  859. package/dist/module/auth/guards/role.guard.d.ts +0 -9
  860. package/dist/module/auth/guards/role.guard.js +0 -59
  861. package/dist/module/auth/guards/role.guard.js.map +0 -1
  862. package/dist/module/enterprise/controller/organization.controller.d.ts +0 -14
  863. package/dist/module/enterprise/controller/organization.controller.js +0 -59
  864. package/dist/module/enterprise/controller/organization.controller.js.map +0 -1
  865. package/dist/module/enterprise/enterprise.module.d.ts +0 -2
  866. package/dist/module/enterprise/enterprise.module.js +0 -57
  867. package/dist/module/enterprise/enterprise.module.js.map +0 -1
  868. package/dist/module/enterprise/entity/enterprise.entity.d.ts +0 -13
  869. package/dist/module/enterprise/entity/enterprise.entity.js +0 -64
  870. package/dist/module/enterprise/entity/enterprise.entity.js.map +0 -1
  871. package/dist/module/enterprise/entity/organization-app-mapping.entity.d.ts +0 -5
  872. package/dist/module/enterprise/entity/organization-app-mapping.entity.js +0 -32
  873. package/dist/module/enterprise/entity/organization-app-mapping.entity.js.map +0 -1
  874. package/dist/module/enterprise/entity/organization.entity.d.ts +0 -30
  875. package/dist/module/enterprise/entity/organization.entity.js +0 -136
  876. package/dist/module/enterprise/entity/organization.entity.js.map +0 -1
  877. package/dist/module/enterprise/repository/enterprise.repository.d.ts +0 -8
  878. package/dist/module/enterprise/repository/enterprise.repository.js +0 -48
  879. package/dist/module/enterprise/repository/enterprise.repository.js.map +0 -1
  880. package/dist/module/enterprise/repository/organization.repository.d.ts +0 -8
  881. package/dist/module/enterprise/repository/organization.repository.js +0 -41
  882. package/dist/module/enterprise/repository/organization.repository.js.map +0 -1
  883. package/dist/module/enterprise/repository/school.repository.d.ts +0 -8
  884. package/dist/module/enterprise/repository/school.repository.js +0 -226
  885. package/dist/module/enterprise/repository/school.repository.js.map +0 -1
  886. package/dist/module/enterprise/service/brand.service.d.ts +0 -3
  887. package/dist/module/enterprise/service/brand.service.js.map +0 -1
  888. package/dist/module/enterprise/service/enterprise.service.d.ts +0 -8
  889. package/dist/module/enterprise/service/enterprise.service.js.map +0 -1
  890. package/dist/module/enterprise/service/organization-app-mapping.service.d.ts +0 -2
  891. package/dist/module/enterprise/service/organization-app-mapping.service.js +0 -17
  892. package/dist/module/enterprise/service/organization-app-mapping.service.js.map +0 -1
  893. package/dist/module/enterprise/service/organization.service.d.ts +0 -19
  894. package/dist/module/enterprise/service/organization.service.js +0 -120
  895. package/dist/module/enterprise/service/organization.service.js.map +0 -1
  896. package/dist/module/filter/service/flatjson-filter.service.d.ts +0 -32
  897. package/dist/module/filter/service/flatjson-filter.service.js +0 -632
  898. package/dist/module/filter/service/flatjson-filter.service.js.map +0 -1
  899. package/dist/module/lead/controller/lead.controller.d.ts +0 -20
  900. package/dist/module/lead/controller/lead.controller.js +0 -58
  901. package/dist/module/lead/controller/lead.controller.js.map +0 -1
  902. package/dist/module/lead/lead.module.d.ts +0 -2
  903. package/dist/module/lead/lead.module.js +0 -26
  904. package/dist/module/lead/lead.module.js.map +0 -1
  905. package/dist/module/lead/repository/lead.repository.d.ts +0 -10
  906. package/dist/module/lead/repository/lead.repository.js +0 -53
  907. package/dist/module/lead/repository/lead.repository.js.map +0 -1
  908. package/dist/module/lead/service/lead.service.d.ts +0 -20
  909. package/dist/module/lead/service/lead.service.js +0 -55
  910. package/dist/module/lead/service/lead.service.js.map +0 -1
  911. package/dist/module/meta/controller/app-master.controller.d.ts +0 -9
  912. package/dist/module/meta/controller/app-master.controller.js +0 -51
  913. package/dist/module/meta/controller/app-master.controller.js.map +0 -1
  914. package/dist/module/meta/entity/app-master.entity.d.ts +0 -13
  915. package/dist/module/meta/entity/app-master.entity.js +0 -62
  916. package/dist/module/meta/entity/app-master.entity.js.map +0 -1
  917. package/dist/module/meta/repository/app-master.repository.d.ts +0 -7
  918. package/dist/module/meta/repository/app-master.repository.js +0 -36
  919. package/dist/module/meta/repository/app-master.repository.js.map +0 -1
  920. package/dist/module/meta/service/app-master.service.d.ts +0 -8
  921. package/dist/module/meta/service/app-master.service.js +0 -45
  922. package/dist/module/meta/service/app-master.service.js.map +0 -1
  923. package/dist/module/meta/service/populate-meta.service.d.ts +0 -13
  924. package/dist/module/meta/service/populate-meta.service.js +0 -206
  925. package/dist/module/meta/service/populate-meta.service.js.map +0 -1
  926. package/dist/module/module/controller/menu.controller.d.ts +0 -8
  927. package/dist/module/module/controller/menu.controller.js +0 -41
  928. package/dist/module/module/controller/menu.controller.js.map +0 -1
  929. package/dist/module/module/controller/module-access.controller.d.ts +0 -35
  930. package/dist/module/module/controller/module-access.controller.js +0 -148
  931. package/dist/module/module/controller/module-access.controller.js.map +0 -1
  932. package/dist/module/module/entity/menu.entity.d.ts +0 -15
  933. package/dist/module/module/entity/menu.entity.js +0 -72
  934. package/dist/module/module/entity/menu.entity.js.map +0 -1
  935. package/dist/module/module/entity/module-access.entity.d.ts +0 -9
  936. package/dist/module/module/entity/module-access.entity.js.map +0 -1
  937. package/dist/module/module/entity/module-action.entity.d.ts +0 -6
  938. package/dist/module/module/entity/module-action.entity.js +0 -37
  939. package/dist/module/module/entity/module-action.entity.js.map +0 -1
  940. package/dist/module/module/entity/module.entity.d.ts +0 -18
  941. package/dist/module/module/entity/module.entity.js +0 -84
  942. package/dist/module/module/entity/module.entity.js.map +0 -1
  943. package/dist/module/module/repository/menu.repository.d.ts +0 -15
  944. package/dist/module/module/repository/menu.repository.js +0 -163
  945. package/dist/module/module/repository/menu.repository.js.map +0 -1
  946. package/dist/module/module/repository/module-access.repository.d.ts +0 -52
  947. package/dist/module/module/repository/module-access.repository.js +0 -283
  948. package/dist/module/module/repository/module-access.repository.js.map +0 -1
  949. package/dist/module/module/service/menu.service.d.ts +0 -12
  950. package/dist/module/module/service/menu.service.js +0 -59
  951. package/dist/module/module/service/menu.service.js.map +0 -1
  952. package/dist/module/module/service/module-access.service.d.ts +0 -63
  953. package/dist/module/module/service/module-access.service.js +0 -113
  954. package/dist/module/module/service/module-access.service.js.map +0 -1
  955. package/dist/module/notification/controller/otp.controller.d.ts +0 -35
  956. package/dist/module/notification/controller/otp.controller.js +0 -103
  957. package/dist/module/notification/controller/otp.controller.js.map +0 -1
  958. package/dist/module/notification/repository/notification.repository.d.ts +0 -7
  959. package/dist/module/notification/repository/notification.repository.js +0 -43
  960. package/dist/module/notification/repository/notification.repository.js.map +0 -1
  961. package/dist/module/notification/service/otp.service.d.ts +0 -31
  962. package/dist/module/notification/service/otp.service.js +0 -112
  963. package/dist/module/notification/service/otp.service.js.map +0 -1
  964. package/dist/module/user/controller/login.controller.d.ts +0 -26
  965. package/dist/module/user/controller/login.controller.js +0 -177
  966. package/dist/module/user/controller/login.controller.js.map +0 -1
  967. package/dist/module/user/controller/user.controller.d.ts +0 -9
  968. package/dist/module/user/controller/user.controller.js +0 -59
  969. package/dist/module/user/controller/user.controller.js.map +0 -1
  970. package/dist/module/user/dto/create-user.dto.d.ts +0 -17
  971. package/dist/module/user/dto/create-user.dto.js +0 -64
  972. package/dist/module/user/dto/create-user.dto.js.map +0 -1
  973. package/dist/module/user/dto/update-user.dto.d.ts +0 -5
  974. package/dist/module/user/dto/update-user.dto.js +0 -9
  975. package/dist/module/user/dto/update-user.dto.js.map +0 -1
  976. package/dist/module/user/entity/role.entity.d.ts +0 -11
  977. package/dist/module/user/entity/role.entity.js +0 -56
  978. package/dist/module/user/entity/role.entity.js.map +0 -1
  979. package/dist/module/user/entity/user-session.entity.d.ts +0 -15
  980. package/dist/module/user/entity/user-session.entity.js +0 -102
  981. package/dist/module/user/entity/user-session.entity.js.map +0 -1
  982. package/dist/module/user/entity/user.entity.js +0 -95
  983. package/dist/module/user/entity/user.entity.js.map +0 -1
  984. package/dist/module/user/repository/role.repository.d.ts +0 -18
  985. package/dist/module/user/repository/role.repository.js +0 -87
  986. package/dist/module/user/repository/role.repository.js.map +0 -1
  987. package/dist/module/user/repository/user-role-mapping.repository.d.ts +0 -19
  988. package/dist/module/user/repository/user-role-mapping.repository.js +0 -110
  989. package/dist/module/user/repository/user-role-mapping.repository.js.map +0 -1
  990. package/dist/module/user/repository/user.repository.d.ts +0 -10
  991. package/dist/module/user/repository/user.repository.js +0 -58
  992. package/dist/module/user/repository/user.repository.js.map +0 -1
  993. package/dist/module/user/repository/userSession.repository.d.ts +0 -10
  994. package/dist/module/user/repository/userSession.repository.js.map +0 -1
  995. package/dist/module/user/service/login.service.d.ts +0 -41
  996. package/dist/module/user/service/login.service.js +0 -242
  997. package/dist/module/user/service/login.service.js.map +0 -1
  998. package/dist/module/user/service/role.service.d.ts +0 -25
  999. package/dist/module/user/service/role.service.js +0 -154
  1000. package/dist/module/user/service/role.service.js.map +0 -1
  1001. package/dist/module/user/service/user-role-mapping.service.d.ts +0 -12
  1002. package/dist/module/user/service/user-role-mapping.service.js +0 -60
  1003. package/dist/module/user/service/user-role-mapping.service.js.map +0 -1
  1004. package/dist/module/user/service/user-session.service.d.ts +0 -31
  1005. package/dist/module/user/service/user-session.service.js +0 -161
  1006. package/dist/module/user/service/user-session.service.js.map +0 -1
  1007. package/dist/module/user/service/user.service.d.ts +0 -38
  1008. package/dist/module/user/service/user.service.js +0 -243
  1009. package/dist/module/user/service/user.service.js.map +0 -1
  1010. package/dist/module/user/user.module.d.ts +0 -2
  1011. package/dist/module/user/user.module.js +0 -78
  1012. package/dist/module/user/user.module.js.map +0 -1
  1013. package/src/migrations/1732612800000-AddEntityJsonGinIndex.ts +0 -41
  1014. package/src/module/auth/guards/role.guard.ts +0 -68
  1015. package/src/module/enterprise/controller/organization.controller.ts +0 -36
  1016. package/src/module/enterprise/enterprise.module.ts +0 -45
  1017. package/src/module/enterprise/entity/enterprise.entity.ts +0 -37
  1018. package/src/module/enterprise/entity/organization-app-mapping.entity.ts +0 -13
  1019. package/src/module/enterprise/entity/organization.entity.ts +0 -92
  1020. package/src/module/enterprise/repository/enterprise.repository.ts +0 -31
  1021. package/src/module/enterprise/repository/organization.repository.ts +0 -26
  1022. package/src/module/enterprise/repository/school.repository.ts +0 -289
  1023. package/src/module/enterprise/service/brand.service.ts +0 -5
  1024. package/src/module/enterprise/service/enterprise.service.ts +0 -16
  1025. package/src/module/enterprise/service/organization-app-mapping.service.ts +0 -4
  1026. package/src/module/enterprise/service/organization.service.ts +0 -146
  1027. package/src/module/filter/service/flatjson-filter.service.ts +0 -903
  1028. package/src/module/filter/test/flatjson-filter.service.spec.ts +0 -415
  1029. package/src/module/lead/controller/lead.controller.ts +0 -30
  1030. package/src/module/lead/lead.module.ts +0 -14
  1031. package/src/module/lead/repository/lead.repository.ts +0 -41
  1032. package/src/module/lead/service/lead.service.ts +0 -54
  1033. package/src/module/meta/controller/app-master.controller.ts +0 -38
  1034. package/src/module/meta/entity/app-master.entity.ts +0 -37
  1035. package/src/module/meta/repository/app-master.repository.ts +0 -20
  1036. package/src/module/meta/service/app-master.service.ts +0 -37
  1037. package/src/module/meta/service/populate-meta.service.ts +0 -228
  1038. package/src/module/module/controller/menu.controller.ts +0 -15
  1039. package/src/module/module/controller/module-access.controller.ts +0 -133
  1040. package/src/module/module/entity/menu.entity.ts +0 -43
  1041. package/src/module/module/entity/module-access.entity.ts +0 -25
  1042. package/src/module/module/entity/module-action.entity.ts +0 -17
  1043. package/src/module/module/entity/module.entity.ts +0 -52
  1044. package/src/module/module/repository/menu.repository.ts +0 -186
  1045. package/src/module/module/repository/module-access.repository.ts +0 -344
  1046. package/src/module/module/service/menu.service.ts +0 -82
  1047. package/src/module/module/service/module-access.service.ts +0 -189
  1048. package/src/module/notification/controller/otp.controller.ts +0 -117
  1049. package/src/module/notification/repository/notification.repository.ts +0 -33
  1050. package/src/module/notification/service/otp.service.ts +0 -133
  1051. package/src/module/user/controller/login.controller.ts +0 -199
  1052. package/src/module/user/controller/user.controller.ts +0 -40
  1053. package/src/module/user/dto/create-user.dto.ts +0 -62
  1054. package/src/module/user/dto/update-user.dto.ts +0 -4
  1055. package/src/module/user/entity/role.entity.ts +0 -33
  1056. package/src/module/user/entity/user-session.entity.ts +0 -73
  1057. package/src/module/user/entity/user.entity.ts +0 -62
  1058. package/src/module/user/repository/role.repository.ts +0 -96
  1059. package/src/module/user/repository/user-role-mapping.repository.ts +0 -126
  1060. package/src/module/user/repository/user.repository.ts +0 -50
  1061. package/src/module/user/repository/userSession.repository.ts +0 -33
  1062. package/src/module/user/service/login.service.ts +0 -326
  1063. package/src/module/user/service/role.service.ts +0 -197
  1064. package/src/module/user/service/user-role-mapping.service.ts +0 -98
  1065. package/src/module/user/service/user-session.service.ts +0 -201
  1066. package/src/module/user/service/user.service.ts +0 -368
  1067. package/src/module/user/user.module.ts +0 -65
@@ -11,80 +11,35 @@ var __metadata = (this && this.__metadata) || function (k, v) {
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.EntityMaster = void 0;
13
13
  const base_entity_entity_1 = require("./base-entity.entity");
14
- const global_constant_1 = require("../../../constant/global.constant");
15
14
  const typeorm_1 = require("typeorm");
15
+ const entity_constant_1 = require("../../../constant/entity.constant");
16
16
  let EntityMaster = class EntityMaster extends base_entity_entity_1.BaseEntity {
17
- constructor() {
18
- super();
19
- this.entity_type = global_constant_1.ENTITYTYPE_ENTITYMASTER;
20
- }
21
17
  };
22
18
  exports.EntityMaster = EntityMaster;
23
19
  __decorate([
24
- (0, typeorm_1.Column)({
25
- name: 'mapped_entity_type',
26
- type: 'varchar',
27
- length: 50,
28
- nullable: false,
29
- }),
20
+ (0, typeorm_1.Column)({ name: 'mapped_entity_type', type: 'varchar', length: 50, nullable: false }),
30
21
  __metadata("design:type", String)
31
22
  ], EntityMaster.prototype, "mapped_entity_type", void 0);
32
23
  __decorate([
33
- (0, typeorm_1.Column)({ name: 'appcode', type: 'varchar', length: 50, nullable: true }),
34
- __metadata("design:type", String)
35
- ], EntityMaster.prototype, "appcode", void 0);
36
- __decorate([
37
- (0, typeorm_1.Column)({ name: 'category', type: 'varchar', length: 50, nullable: true }),
38
- __metadata("design:type", String)
39
- ], EntityMaster.prototype, "category", void 0);
40
- __decorate([
41
- (0, typeorm_1.Column)({ name: 'module', type: 'varchar', length: 200, nullable: true }),
42
- __metadata("design:type", String)
43
- ], EntityMaster.prototype, "module", void 0);
24
+ (0, typeorm_1.Column)({ name: 'app_id', type: 'int', nullable: true }),
25
+ __metadata("design:type", Number)
26
+ ], EntityMaster.prototype, "app_id", void 0);
44
27
  __decorate([
45
- (0, typeorm_1.Column)({
46
- name: 'entity_data_class',
47
- type: 'varchar',
48
- length: 200,
49
- nullable: true,
50
- }),
28
+ (0, typeorm_1.Column)({ name: 'entity_data_class', type: 'varchar', length: 200, nullable: true }),
51
29
  __metadata("design:type", String)
52
30
  ], EntityMaster.prototype, "entity_data_class", void 0);
53
31
  __decorate([
54
- (0, typeorm_1.Column)({
55
- name: 'entity_service',
56
- type: 'varchar',
57
- length: 200,
58
- nullable: true,
59
- }),
32
+ (0, typeorm_1.Column)({ name: 'entity_service', type: 'varchar', length: 200, nullable: true }),
60
33
  __metadata("design:type", String)
61
34
  ], EntityMaster.prototype, "entity_service", void 0);
62
35
  __decorate([
63
- (0, typeorm_1.Column)({
64
- name: 'db_table_name',
65
- type: 'varchar',
66
- length: 200,
67
- nullable: true,
68
- }),
69
- __metadata("design:type", String)
70
- ], EntityMaster.prototype, "db_table_name", void 0);
71
- __decorate([
72
- (0, typeorm_1.Column)({
73
- name: 'description',
74
- type: 'varchar',
75
- length: 200,
76
- nullable: true,
77
- }),
78
- __metadata("design:type", String)
79
- ], EntityMaster.prototype, "description", void 0);
80
- __decorate([
81
- (0, typeorm_1.Column)({ name: 'storage_type', nullable: true, length: 20 }),
36
+ (0, typeorm_1.Column)({ name: 'storage_type', type: 'varchar', nullable: true, length: 20 }),
82
37
  __metadata("design:type", String)
83
38
  ], EntityMaster.prototype, "storage_type", void 0);
84
39
  __decorate([
85
- (0, typeorm_1.Column)({ name: 'show_in_entity_list', nullable: true, length: 20 }),
40
+ (0, typeorm_1.Column)({ name: 'db_table_name', type: 'varchar', length: 200, nullable: true }),
86
41
  __metadata("design:type", String)
87
- ], EntityMaster.prototype, "show_in_entity_list", void 0);
42
+ ], EntityMaster.prototype, "db_table_name", void 0);
88
43
  __decorate([
89
44
  (0, typeorm_1.Column)({ name: 'code_entry', nullable: true, length: 20 }),
90
45
  __metadata("design:type", String)
@@ -98,27 +53,27 @@ __decorate([
98
53
  __metadata("design:type", String)
99
54
  ], EntityMaster.prototype, "data_source", void 0);
100
55
  __decorate([
101
- (0, typeorm_1.Column)({ name: 'is_workflow', nullable: true }),
56
+ (0, typeorm_1.Column)({ name: 'is_flat_json', type: 'boolean', nullable: true }),
57
+ __metadata("design:type", Boolean)
58
+ ], EntityMaster.prototype, "is_flat_json", void 0);
59
+ __decorate([
60
+ (0, typeorm_1.Column)({ name: 'is_workflow', type: 'boolean', nullable: true }),
102
61
  __metadata("design:type", Boolean)
103
62
  ], EntityMaster.prototype, "is_workflow", void 0);
104
63
  __decorate([
105
- (0, typeorm_1.Column)({ name: 'doc_upload_path', nullable: true, length: 50 }),
106
- __metadata("design:type", String)
107
- ], EntityMaster.prototype, "doc_upload_path", void 0);
64
+ (0, typeorm_1.Column)({ name: 'is_hierarchy', type: 'boolean', nullable: true }),
65
+ __metadata("design:type", Boolean)
66
+ ], EntityMaster.prototype, "is_hierarchy", void 0);
108
67
  __decorate([
109
68
  (0, typeorm_1.Column)({ name: 'overwrite_path', type: 'int', nullable: true }),
110
69
  __metadata("design:type", Number)
111
70
  ], EntityMaster.prototype, "overwrite_path", void 0);
112
71
  __decorate([
113
- (0, typeorm_1.Column)({ name: 'is_flag_json', nullable: true }),
72
+ (0, typeorm_1.Column)({ name: 'is_hierarchical', nullable: true }),
114
73
  __metadata("design:type", Boolean)
115
- ], EntityMaster.prototype, "is_flag_json", void 0);
74
+ ], EntityMaster.prototype, "is_hierarchical", void 0);
116
75
  exports.EntityMaster = EntityMaster = __decorate([
117
76
  (0, typeorm_1.Entity)({ name: 'frm_entity_master' }),
118
- (0, typeorm_1.Index)('idx_entity_master_mapped_type_org', [
119
- 'mapped_entity_type',
120
- 'organization_id',
121
- ]),
122
- __metadata("design:paramtypes", [])
77
+ (0, typeorm_1.Index)('idx_entity_master_mapped_type_org', ['mapped_entity_type', 'enterprise_id'])
123
78
  ], EntityMaster);
124
79
  //# sourceMappingURL=entity-master.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"entity-master.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/entity-master.entity.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"entity-master.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/entity-master.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6DAAkD;AAClD,qCAAgD;AAEhD,uEAAgE;AAIzD,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,+BAAU;CA6C3C,CAAA;AA7CY,oCAAY;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;;wDAC1D;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACzC;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,mBAAmB,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDAC1D;AAG1B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC1D;AAIvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;kDACpD;AAG1B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAC1D;AAItB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;gDACxC;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC;;sDACxC;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDAC5B;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAC,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDAC3C;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDAC5C;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDAC5C;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACzC;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDAC3B;uBA5Cd,YAAY;IAFxB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,mBAAmB,EAAE,CAAC;IACrC,IAAA,eAAK,EAAC,mCAAmC,EAAE,CAAC,oBAAoB,EAAE,eAAe,CAAC,CAAC;GACvE,YAAY,CA6CxB"}
@@ -1,6 +1,5 @@
1
1
  import { BaseEntity } from './base-entity.entity';
2
2
  export declare class EntityRelationData extends BaseEntity {
3
- constructor();
4
3
  source_entity_type: string;
5
4
  source_entity_id: number;
6
5
  target_entity_type: string;
@@ -10,14 +10,9 @@ var __metadata = (this && this.__metadata) || function (k, v) {
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.EntityRelationData = void 0;
13
- const global_constant_1 = require("../../../constant/global.constant");
14
13
  const typeorm_1 = require("typeorm");
15
14
  const base_entity_entity_1 = require("./base-entity.entity");
16
15
  let EntityRelationData = class EntityRelationData extends base_entity_entity_1.BaseEntity {
17
- constructor() {
18
- super();
19
- this.entity_type = global_constant_1.ENTITYTYPE_ENTITY_RELATION_DATA;
20
- }
21
16
  };
22
17
  exports.EntityRelationData = EntityRelationData;
23
18
  __decorate([
@@ -45,7 +40,6 @@ __decorate([
45
40
  __metadata("design:type", Number)
46
41
  ], EntityRelationData.prototype, "relation_id", void 0);
47
42
  exports.EntityRelationData = EntityRelationData = __decorate([
48
- (0, typeorm_1.Entity)({ name: 'frm_entity_relation_data' }),
49
- __metadata("design:paramtypes", [])
43
+ (0, typeorm_1.Entity)({ name: 'frm_entity_relation_data' })
50
44
  ], EntityRelationData);
51
45
  //# sourceMappingURL=entity-relation-data.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"entity-relation-data.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/entity-relation-data.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uEAA+E;AAC/E,qCAAyC;AACzC,6DAAkD;AAG3C,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,+BAAU;IAChD;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,iDAA+B,CAAC;IACrD,CAAC;CAmBF,CAAA;AAvBY,gDAAkB;AAO7B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8DACA;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4DACF;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8DACA;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4DACF;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACL;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDACP;6BAtBT,kBAAkB;IAD9B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,0BAA0B,EAAE,CAAC;;GAChC,kBAAkB,CAuB9B"}
1
+ {"version":3,"file":"entity-relation-data.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/entity-relation-data.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,6DAAkD;AAG3C,IAAM,kBAAkB,GAAxB,MAAM,kBAAmB,SAAQ,+BAAU;CAmBjD,CAAA;AAnBY,gDAAkB;AAG7B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8DACA;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4DACF;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8DACA;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4DACF;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACL;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDACP;6BAlBT,kBAAkB;IAD9B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,0BAA0B,EAAE,CAAC;GAChC,kBAAkB,CAmB9B"}
@@ -1,6 +1,5 @@
1
1
  import { BaseEntity } from './base-entity.entity';
2
2
  export declare class EntityRelation extends BaseEntity {
3
- constructor();
4
3
  source_entity_type: string;
5
4
  target_entity_type: string;
6
5
  relation_type: string;
@@ -10,14 +10,9 @@ var __metadata = (this && this.__metadata) || function (k, v) {
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.EntityRelation = void 0;
13
- const global_constant_1 = require("../../../constant/global.constant");
14
13
  const typeorm_1 = require("typeorm");
15
14
  const base_entity_entity_1 = require("./base-entity.entity");
16
15
  let EntityRelation = class EntityRelation extends base_entity_entity_1.BaseEntity {
17
- constructor() {
18
- super();
19
- this.entity_type = global_constant_1.ENTITYTYPE_ENTITY_RELATION;
20
- }
21
16
  };
22
17
  exports.EntityRelation = EntityRelation;
23
18
  __decorate([
@@ -37,7 +32,6 @@ __decorate([
37
32
  __metadata("design:type", Number)
38
33
  ], EntityRelation.prototype, "relation_id", void 0);
39
34
  exports.EntityRelation = EntityRelation = __decorate([
40
- (0, typeorm_1.Entity)({ name: 'frm_entity_relation' }),
41
- __metadata("design:paramtypes", [])
35
+ (0, typeorm_1.Entity)({ name: 'frm_entity_relation' })
42
36
  ], EntityRelation);
43
37
  //# sourceMappingURL=entity-relation.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"entity-relation.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/entity-relation.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uEAA0E;AAC1E,qCAAyC;AACzC,6DAAkD;AAG3C,IAAM,cAAc,GAApB,MAAM,cAAe,SAAQ,+BAAU;IAC5C;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,4CAA0B,CAAC;IAChD,CAAC;CAaF,CAAA;AAjBY,wCAAc;AAOzB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACA;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACA;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDACL;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDACP;yBAhBT,cAAc;IAD1B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;;GAC3B,cAAc,CAiB1B"}
1
+ {"version":3,"file":"entity-relation.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/entity-relation.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,6DAAkD;AAG3C,IAAM,cAAc,GAApB,MAAM,cAAe,SAAQ,+BAAU;CAa7C,CAAA;AAbY,wCAAc;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACA;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACA;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDACL;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDACP;yBAZT,cAAc;IAD1B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;GAC3B,cAAc,CAa1B"}
@@ -1,6 +1,5 @@
1
1
  import { BaseEntity } from './base-entity.entity';
2
2
  export declare class EntityTableColumn extends BaseEntity {
3
- constructor();
4
3
  mapped_entity_type: string;
5
4
  menu_code: string;
6
5
  table_name: string;
@@ -10,14 +10,9 @@ var __metadata = (this && this.__metadata) || function (k, v) {
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.EntityTableColumn = void 0;
13
- const global_constant_1 = require("../../../constant/global.constant");
14
13
  const typeorm_1 = require("typeorm");
15
14
  const base_entity_entity_1 = require("./base-entity.entity");
16
15
  let EntityTableColumn = class EntityTableColumn extends base_entity_entity_1.BaseEntity {
17
- constructor() {
18
- super();
19
- this.entity_type = global_constant_1.ENTITYTYPE_ENTITYTABLECOLUMN;
20
- }
21
16
  };
22
17
  exports.EntityTableColumn = EntityTableColumn;
23
18
  __decorate([
@@ -86,7 +81,6 @@ __decorate([
86
81
  __metadata("design:type", Number)
87
82
  ], EntityTableColumn.prototype, "size", void 0);
88
83
  exports.EntityTableColumn = EntityTableColumn = __decorate([
89
- (0, typeorm_1.Entity)({ name: 'frm_entity_table_column' }),
90
- __metadata("design:paramtypes", [])
84
+ (0, typeorm_1.Entity)({ name: 'frm_entity_table_column' })
91
85
  ], EntityTableColumn);
92
86
  //# sourceMappingURL=entity-table-column.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"entity-table-column.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/entity-table-column.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uEAAiF;AACjF,qCAAyC;AACzC,6DAAkD;AAG3C,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,+BAAU;IAC/C;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,8CAA4B,CAAC;IAClD,CAAC;CAmDF,CAAA;AAvDY,8CAAiB;AAO5B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DAC5B;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC5B;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDAC5B;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDAC5B;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAC5B;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDAC5B;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDAC5B;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC5B;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC5B;AAQlB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,SAAS;QACf,QAAQ,EAAE,IAAI;QACd,MAAM,EAAE,EAAE;KACX,CAAC;;2DACuB;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DAC7C;AAGxB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDAC5B;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDACN;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAC5B;AAGd;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAC5B;4BAtDF,iBAAiB;IAD7B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,yBAAyB,EAAE,CAAC;;GAC/B,iBAAiB,CAuD7B"}
1
+ {"version":3,"file":"entity-table-column.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/entity-table-column.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,6DAAkD;AAG3C,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,+BAAU;CAmDhD,CAAA;AAnDY,8CAAiB;AAG5B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6DAC5B;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC5B;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDAC5B;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDAC5B;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAC5B;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDAC5B;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDAC5B;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC5B;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC5B;AAQlB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,SAAS;QACf,QAAQ,EAAE,IAAI;QACd,MAAM,EAAE,EAAE;KACX,CAAC;;2DACuB;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DAC7C;AAGxB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDAC5B;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDACN;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAC5B;AAGd;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAC5B;4BAlDF,iBAAiB;IAD7B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,yBAAyB,EAAE,CAAC;GAC/B,iBAAiB,CAmD7B"}
@@ -1,6 +1,5 @@
1
1
  import { BaseEntity } from './base-entity.entity';
2
2
  export declare class EntityTable extends BaseEntity {
3
- constructor();
4
3
  mapped_entity_type: string;
5
4
  menu_code: string;
6
5
  category: string;
@@ -12,12 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.EntityTable = void 0;
13
13
  const typeorm_1 = require("typeorm");
14
14
  const base_entity_entity_1 = require("./base-entity.entity");
15
- const global_constant_1 = require("../../../constant/global.constant");
16
15
  let EntityTable = class EntityTable extends base_entity_entity_1.BaseEntity {
17
- constructor() {
18
- super();
19
- this.entity_type = global_constant_1.ENTITYTYPE_ENTITYTABLE;
20
- }
21
16
  };
22
17
  exports.EntityTable = EntityTable;
23
18
  __decorate([
@@ -73,7 +68,6 @@ __decorate([
73
68
  __metadata("design:type", String)
74
69
  ], EntityTable.prototype, "display_type", void 0);
75
70
  exports.EntityTable = EntityTable = __decorate([
76
- (0, typeorm_1.Entity)({ name: 'frm_entity_table' }),
77
- __metadata("design:paramtypes", [])
71
+ (0, typeorm_1.Entity)({ name: 'frm_entity_table' })
78
72
  ], EntityTable);
79
73
  //# sourceMappingURL=entity-table.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"entity-table.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/entity-table.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,6DAAkD;AAClD,uEAA2E;AAGpE,IAAM,WAAW,GAAjB,MAAM,WAAY,SAAQ,+BAAU;IACzC;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,wCAAsB,CAAC;IAC5C,CAAC;CAwCF,CAAA;AA5CY,kCAAW;AAOtB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDAC5B;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CAC5B;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CAC5B;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAC5B;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDAC5B;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAC5B;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAC5B;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAC5B;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAC5B;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CAC5B;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAC5B;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CAC5B;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDAC5B;sBA3CV,WAAW;IADvB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,CAAC;;GACxB,WAAW,CA4CvB"}
1
+ {"version":3,"file":"entity-table.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/entity-table.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,6DAAkD;AAG3C,IAAM,WAAW,GAAjB,MAAM,WAAY,SAAQ,+BAAU;CAwC1C,CAAA;AAxCY,kCAAW;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,oBAAoB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDAC5B;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CAC5B;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CAC5B;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAC5B;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDAC5B;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAC5B;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAC5B;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAC5B;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CAC5B;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CAC5B;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAC5B;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CAC5B;AAGhB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,cAAc,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDAC5B;sBAvCV,WAAW;IADvB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,CAAC;GACxB,WAAW,CAwCvB"}
@@ -8,6 +8,4 @@ export declare class MediaData extends BaseEntity {
8
8
  media_url: string;
9
9
  extension: string;
10
10
  content_type: string;
11
- review_status: string;
12
- remark: string;
13
11
  }
@@ -48,14 +48,6 @@ __decorate([
48
48
  (0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: true }),
49
49
  __metadata("design:type", String)
50
50
  ], MediaData.prototype, "content_type", void 0);
51
- __decorate([
52
- (0, typeorm_1.Column)({ type: 'varchar', length: 50, nullable: true }),
53
- __metadata("design:type", String)
54
- ], MediaData.prototype, "review_status", void 0);
55
- __decorate([
56
- (0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
57
- __metadata("design:type", String)
58
- ], MediaData.prototype, "remark", void 0);
59
51
  exports.MediaData = MediaData = __decorate([
60
52
  (0, typeorm_1.Entity)({ name: 'frm_media_data' }),
61
53
  __metadata("design:paramtypes", [])
@@ -1 +1 @@
1
- {"version":3,"file":"media-data.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/media-data.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,6DAAkD;AAClD,uEAAqE;AAG9D,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,+BAAU;IACvC;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,kCAAgB,CAAC;IACtC,CAAC;CA4BF,CAAA;AAhCY,8BAAS;AAOpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACvC;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDAC5B;AAG7B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDAC7B;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAClB;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACvC;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACtC;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACnC;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;gDAClC;AAGtB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yCAC7B;oBA/BJ,SAAS;IADrB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;;GACtB,SAAS,CAgCrB"}
1
+ {"version":3,"file":"media-data.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/media-data.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAyC;AACzC,6DAAkD;AAClD,uEAAqE;AAG9D,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,+BAAU;IACvC;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,kCAAgB,CAAC;IACtC,CAAC;CAsBF,CAAA;AA1BY,8BAAS;AAOpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACvC;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;uDAC5B;AAG7B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDAC7B;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;mDAClB;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACvC;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CACtC;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACnC;oBAzBV,SAAS;IADrB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,CAAC;;GACtB,SAAS,CA0BrB"}
@@ -1,6 +1,5 @@
1
1
  import { BaseEntity } from './base-entity.entity';
2
2
  export declare class PreferenceMaster extends BaseEntity {
3
- constructor();
4
3
  display_name: string;
5
4
  preference_key: string;
6
5
  preference_value: string;
@@ -12,12 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.PreferenceMaster = void 0;
13
13
  const base_entity_entity_1 = require("./base-entity.entity");
14
14
  const typeorm_1 = require("typeorm");
15
- const global_constant_1 = require("../../../constant/global.constant");
16
15
  let PreferenceMaster = class PreferenceMaster extends base_entity_entity_1.BaseEntity {
17
- constructor() {
18
- super();
19
- this.entity_type = global_constant_1.ENTITYTYPE_PREFERENCEMASTER;
20
- }
21
16
  };
22
17
  exports.PreferenceMaster = PreferenceMaster;
23
18
  __decorate([
@@ -79,7 +74,6 @@ __decorate([
79
74
  __metadata("design:type", String)
80
75
  ], PreferenceMaster.prototype, "possible_values", void 0);
81
76
  exports.PreferenceMaster = PreferenceMaster = __decorate([
82
- (0, typeorm_1.Entity)({ name: 'frm_preference_master' }),
83
- __metadata("design:paramtypes", [])
77
+ (0, typeorm_1.Entity)({ name: 'frm_preference_master' })
84
78
  ], PreferenceMaster);
85
79
  //# sourceMappingURL=preference.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"preference.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/preference.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6DAAkD;AAClD,qCAAyC;AACzC,uEAAgF;AAGzE,IAAM,gBAAgB,GAAtB,MAAM,gBAAiB,SAAQ,+BAAU;IAC9C;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,6CAA2B,CAAC;IACjD,CAAC;CAoDF,CAAA;AAxDY,4CAAgB;AAY3B;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,GAAG;QACX,QAAQ,EAAE,IAAI;KACf,CAAC;;sDACmB;AAQrB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,gBAAgB;QACtB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,GAAG;QACX,QAAQ,EAAE,IAAI;KACf,CAAC;;wDACqB;AAQvB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,GAAG;QACX,QAAQ,EAAE,IAAI;KACf,CAAC;;0DACuB;AAQzB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,aAAa;QACnB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,IAAI;QACZ,QAAQ,EAAE,IAAI;KACf,CAAC;;qDACkB;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC1D;AAQnB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,eAAe;QACrB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,GAAG;QACX,QAAQ,EAAE,IAAI;KACf,CAAC;;uDACoB;AAQtB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,iBAAiB;QACvB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,GAAG;QACX,QAAQ,EAAE,IAAI;KACf,CAAC;;yDACsB;2BAvDb,gBAAgB;IAD5B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE,CAAC;;GAC7B,gBAAgB,CAwD5B"}
1
+ {"version":3,"file":"preference.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/preference.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6DAAkD;AAClD,qCAAyC;AAGlC,IAAM,gBAAgB,GAAtB,MAAM,gBAAiB,SAAQ,+BAAU;CAoD/C,CAAA;AApDY,4CAAgB;AAQ3B;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,cAAc;QACpB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,GAAG;QACX,QAAQ,EAAE,IAAI;KACf,CAAC;;sDACmB;AAQrB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,gBAAgB;QACtB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,GAAG;QACX,QAAQ,EAAE,IAAI;KACf,CAAC;;wDACqB;AAQvB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,kBAAkB;QACxB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,GAAG;QACX,QAAQ,EAAE,IAAI;KACf,CAAC;;0DACuB;AAQzB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,aAAa;QACnB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,IAAI;QACZ,QAAQ,EAAE,IAAI;KACf,CAAC;;qDACkB;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,YAAY,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDAC1D;AAQnB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,eAAe;QACrB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,GAAG;QACX,QAAQ,EAAE,IAAI;KACf,CAAC;;uDACoB;AAQtB;IANC,IAAA,gBAAM,EAAC;QACN,IAAI,EAAE,iBAAiB;QACvB,IAAI,EAAE,SAAS;QACf,MAAM,EAAE,GAAG;QACX,QAAQ,EAAE,IAAI;KACf,CAAC;;yDACsB;2BAnDb,gBAAgB;IAD5B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE,CAAC;GAC7B,gBAAgB,CAoD5B"}
@@ -1,6 +1,5 @@
1
1
  import { BaseEntity } from './base-entity.entity';
2
2
  export declare class ViewMaster extends BaseEntity {
3
- constructor();
4
3
  mapped_entity_type: string;
5
4
  mapped_entity_id: number;
6
5
  identifier: string;
@@ -12,12 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.ViewMaster = void 0;
13
13
  const base_entity_entity_1 = require("./base-entity.entity");
14
14
  const typeorm_1 = require("typeorm");
15
- const global_constant_1 = require("../../../constant/global.constant");
16
15
  let ViewMaster = class ViewMaster extends base_entity_entity_1.BaseEntity {
17
- constructor() {
18
- super();
19
- this.entity_type = global_constant_1.ENTITYTYPE_VIEWMASTER;
20
- }
21
16
  };
22
17
  exports.ViewMaster = ViewMaster;
23
18
  __decorate([
@@ -61,7 +56,6 @@ __decorate([
61
56
  __metadata("design:type", Number)
62
57
  ], ViewMaster.prototype, "is_default", void 0);
63
58
  exports.ViewMaster = ViewMaster = __decorate([
64
- (0, typeorm_1.Entity)({ name: 'frm_entity_view' }),
65
- __metadata("design:paramtypes", [])
59
+ (0, typeorm_1.Entity)({ name: 'frm_entity_view' })
66
60
  ], ViewMaster);
67
61
  //# sourceMappingURL=view-master.entity.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"view-master.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/view-master.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6DAAkD;AAClD,qCAAyC;AACzC,uEAA0E;AAGnE,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,+BAAU;IACxC;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,uCAAqB,CAAC;IAC3C,CAAC;CA+BF,CAAA;AAnCY,gCAAU;AAOrB;IADC,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sDACZ;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACf;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CACpB;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACP;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACX;AAG9B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACX;AAG9B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDACZ;AAG7B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACvB;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCACd;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAG,QAAQ,EAAE,IAAI,EAAC,CAAC;;8CACrB;qBAlCR,UAAU;IADtB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,CAAC;;GACvB,UAAU,CAmCtB"}
1
+ {"version":3,"file":"view-master.entity.js","sourceRoot":"","sources":["../../../../src/module/meta/entity/view-master.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6DAAkD;AAClD,qCAAyC;AAGlC,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,+BAAU;CA+BzC,CAAA;AA/BY,gCAAU;AAGrB;IADC,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;sDACZ;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;oDACf;AAGzB;IADC,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CACpB;AAGnB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;+CACP;AAGpB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACX;AAG9B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDACX;AAG9B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wDACZ;AAG7B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACvB;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCACd;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;8CACrB;qBA9BR,UAAU;IADtB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,iBAAiB,EAAE,CAAC;GACvB,UAAU,CA+BtB"}
@@ -40,13 +40,6 @@ const meta_controller_1 = require("./controller/meta.controller");
40
40
  const entity_validation_service_1 = require("./service/entity-validation.service");
41
41
  const listmaster_module_1 = require("../listmaster/listmaster.module");
42
42
  const filter_module_1 = require("../filter/filter.module");
43
- const app_master_controller_1 = require("./controller/app-master.controller");
44
- const user_role_mapping_repository_1 = require("../user/repository/user-role-mapping.repository");
45
- const user_role_mapping_entity_1 = require("../user/entity/user-role-mapping.entity");
46
- const app_master_service_1 = require("./service/app-master.service");
47
- const app_master_repository_1 = require("./repository/app-master.repository");
48
- const app_master_entity_1 = require("./entity/app-master.entity");
49
- const populate_meta_service_1 = require("./service/populate-meta.service");
50
43
  const attribute_master_controller_1 = require("./controller/attribute-master.controller");
51
44
  const entity_dynamic_controller_1 = require("./controller/entity-dynamic.controller");
52
45
  const entity_dynamic_service_1 = require("./service/entity-dynamic.service");
@@ -64,6 +57,7 @@ const entity_public_controller_1 = require("./controller/entity.public.controlle
64
57
  const entity_attribute_update_service_1 = require("./service/entity-attribute-update.service");
65
58
  const entity_attribute_update_repository_1 = require("./repository/entity-attribute-update.repository");
66
59
  const entity_relation_repository_1 = require("./repository/entity-relation.repository");
60
+ const eav_module_1 = require("../eav/eav.module");
67
61
  let EntityModule = class EntityModule {
68
62
  };
69
63
  exports.EntityModule = EntityModule;
@@ -78,20 +72,19 @@ exports.EntityModule = EntityModule = __decorate([
78
72
  entity_table_column_entity_1.EntityTableColumn,
79
73
  media_data_entity_1.MediaData,
80
74
  view_master_entity_1.ViewMaster,
81
- user_role_mapping_entity_1.UserRoleMapping,
82
- app_master_entity_1.AppMaster,
83
75
  entity_relation_entity_1.EntityRelation,
84
76
  entity_relation_data_entity_1.EntityRelationData,
85
77
  ]),
86
78
  (0, common_1.forwardRef)(() => listmaster_module_1.ListMasterModule),
87
79
  (0, common_1.forwardRef)(() => filter_module_1.FilterModule),
88
- (0, common_1.forwardRef)(() => require('../entity_json/entity_json.module').EntityJSONModule),
89
80
  utils_module_1.UtilsModule,
90
81
  (0, common_1.forwardRef)(() => workflow_automation_module_1.WorkflowAutomationModule),
82
+ eav_module_1.EAVModule
91
83
  ],
92
84
  providers: [
93
- entity_master_service_1.EntityMasterService,
85
+ { provide: 'EntityMasterService', useClass: entity_master_service_1.EntityMasterService },
94
86
  entity_service_impl_service_1.EntityServiceImpl,
87
+ { provide: 'EntityDynamicService', useClass: entity_dynamic_service_1.EntityDynamicService },
95
88
  entity_dynamic_service_1.EntityDynamicService,
96
89
  { provide: 'CommonService', useClass: common_service_1.CommonService },
97
90
  attribute_master_repository_1.AttributeMasterRepository,
@@ -101,12 +94,11 @@ exports.EntityModule = EntityModule = __decorate([
101
94
  master_service_1.MasterService,
102
95
  entity_table_repository_1.EntityTableRepository,
103
96
  entity_table_service_1.EntityTableService,
104
- populate_meta_service_1.PopulateMetaService,
105
97
  entity_table_column_repository_1.EntityTableColumnRepository,
106
98
  entity_table_column_service_1.EntityTableColumnService,
107
99
  media_data_repository_1.MediaDataRepository,
108
100
  media_data_service_1.MediaDataService,
109
- attribute_master_service_1.AttributeMasterService,
101
+ { provide: 'AttributeMasterService', useClass: attribute_master_service_1.AttributeMasterService },
110
102
  entity_attribute_update_service_1.EntityUpdateService,
111
103
  view_master_repository_1.ViewMaterRespository,
112
104
  entity_validation_service_1.EntityValidationService,
@@ -116,30 +108,25 @@ exports.EntityModule = EntityModule = __decorate([
116
108
  provide: 'EntityRelationDataService',
117
109
  useClass: entity_realation_data_service_1.EntityRelationDataService,
118
110
  },
119
- user_role_mapping_repository_1.UserRoleMappingRepository,
120
- app_master_repository_1.AppMasterRespository,
121
- app_master_service_1.AppMasterService,
122
111
  resolver_service_1.ResolverService,
123
112
  entity_master_repository_1.EntityMasterRepository,
124
- entity_relation_repository_1.EntityRelationRepository
113
+ entity_relation_repository_1.EntityRelationRepository,
125
114
  ],
126
115
  exports: [
127
- entity_master_service_1.EntityMasterService,
116
+ 'EntityMasterService',
128
117
  entity_service_impl_service_1.EntityServiceImpl,
129
118
  preference_service_1.PreferenceService,
130
119
  entity_validation_service_1.EntityValidationService,
131
120
  entity_table_service_1.EntityTableService,
132
- populate_meta_service_1.PopulateMetaService,
133
121
  entity_table_column_service_1.EntityTableColumnService,
134
122
  media_data_service_1.MediaDataService,
135
123
  entity_attribute_update_service_1.EntityUpdateService,
136
124
  entity_attribute_update_repository_1.EntityUpdateRepository,
137
125
  'ViewMasterService',
138
- attribute_master_service_1.AttributeMasterService,
139
- app_master_service_1.AppMasterService,
126
+ 'AttributeMasterService',
140
127
  master_service_1.MasterService,
141
128
  resolver_service_1.ResolverService,
142
- entity_dynamic_service_1.EntityDynamicService,
129
+ 'EntityDynamicService',
143
130
  'CommonService',
144
131
  'EntityRelationService',
145
132
  ],
@@ -149,7 +136,6 @@ exports.EntityModule = EntityModule = __decorate([
149
136
  media_controller_1.MediaController,
150
137
  view_master_controller_1.ViewMasterController,
151
138
  meta_controller_1.MetaController,
152
- app_master_controller_1.AppMasterController,
153
139
  attribute_master_controller_1.AttributeMasterController,
154
140
  entity_dynamic_controller_1.EntityDynamicController,
155
141
  entity_relation_controller_1.EntityRelationController,
@@ -1 +1 @@
1
- {"version":3,"file":"entity.module.js","sourceRoot":"","sources":["../../../src/module/meta/entity.module.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"entity.module.js","sourceRoot":"","sources":["../../../src/module/meta/entity.module.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  import { AttributeMaster } from '../entity/attribute-master.entity';
2
2
  import { EntityManager, Repository } from 'typeorm';
3
- import { UserData } from 'src/module/user/entity/user.entity';
3
+ import { UserData } from 'src/module/auth/dto/user.dto';
4
4
  import { ReflectionHelper } from '../../../utils/service/reflection-helper.service';
5
5
  import { ConfigService } from '@nestjs/config';
6
6
  export declare class AttributeMasterRepository {
@@ -10,7 +10,7 @@ export declare class AttributeMasterRepository {
10
10
  private readonly configService;
11
11
  constructor(attributeMasterRepository: Repository<AttributeMaster>, entityManger: EntityManager, reflectionHelper: ReflectionHelper, configService: ConfigService);
12
12
  schema: any;
13
- findByMappedEntityIdAndMappedEntityTypeAndAttributeKeyAndOrganizationId(mappedEntityId: number, mappedEntityType: string, attributeKey: string, organizationId: number): Promise<AttributeMaster | null>;
13
+ findByMappedEntityIdAndMappedEntityTypeAndAttributeKeyAndOrganizationId(mappedEntityId: number, mappedEntityType: string, attributeKey: string, enterpriseId: number): Promise<AttributeMaster | null>;
14
14
  findAttributesByMappedEntityType(entityType: string, loggedInUser: UserData): Promise<AttributeMaster[]>;
15
15
  createAttribute(attributeData: AttributeMaster): Promise<AttributeMaster>;
16
16
  updateAttribute(attributeData: AttributeMaster, id: number): Promise<AttributeMaster | null>;
@@ -23,8 +23,14 @@ export declare class AttributeMasterRepository {
23
23
  label: string;
24
24
  value: number;
25
25
  }[]>;
26
- getTableNameByEntityType(entityType: string, loggedInUser: UserData): Promise<string | null>;
26
+ getTableNameByEntityType(entityType: string, loggedInUser: UserData): Promise<{
27
+ tableName: string | null;
28
+ storageType: string | null;
29
+ }>;
27
30
  checkIfColumnExists(tableName: string, columnName: string): Promise<boolean>;
28
31
  addColumnToTable(tableName: string, columnName: string, columnType: string): Promise<void>;
32
+ dropColumnFromTable(tableName: string, columnName: string): Promise<void>;
33
+ alterColumnType(tableName: string, columnName: string, newColumnType: string): Promise<void>;
29
34
  findByMappedEntityTypeAndAttributeKeyAndOrganizationId(mapped_entity_type: string, attribute_key: string, enterprise_id: number): Promise<AttributeMaster | null>;
35
+ getAttributesForFlatJson(entityType: string, enterpriseId: number, allowedElementTypes: string[]): Promise<AttributeMaster[]>;
30
36
  }