rez_core 3.1.178 → 3.1.179

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 (1304) 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/docs/modules/event-driven-integration-design.md +91 -91
  17. package/docs/modules/integration.md +250 -250
  18. package/eslint.config.mjs +34 -34
  19. package/nest-cli.json +14 -14
  20. package/package.json +118 -118
  21. package/server.log +850 -0
  22. package/src/app.controller.ts +12 -12
  23. package/src/app.module.ts +49 -49
  24. package/src/app.service.ts +8 -8
  25. package/src/config/config.module.ts +18 -18
  26. package/src/config/database.config.ts +23 -23
  27. package/src/constant/global.constant.ts +67 -67
  28. package/src/core.module.ts +81 -81
  29. package/src/decorators/roles.decorator.ts +7 -7
  30. package/src/dtos/response.dto.ts +6 -6
  31. package/src/dtos/response.ts +5 -5
  32. package/src/index.ts +1 -1
  33. package/src/module/auth/auth.module.ts +49 -49
  34. package/src/module/auth/controller/auth.controller.ts +28 -28
  35. package/src/module/auth/guards/google-auth.guard.ts +9 -9
  36. package/src/module/auth/guards/jwt.guard.ts +22 -22
  37. package/src/module/auth/guards/role.guard.ts +68 -68
  38. package/src/module/auth/services/auth.service.ts +50 -50
  39. package/src/module/auth/services/jwt.service.ts +11 -11
  40. package/src/module/auth/strategies/google.strategy.ts +54 -54
  41. package/src/module/auth/strategies/jwt.strategy.ts +58 -58
  42. package/src/module/auth/strategies/local.strategy.ts +13 -13
  43. package/src/module/dashboard/controller/dashboard.controller.ts +36 -36
  44. package/src/module/dashboard/dashboard.module.ts +21 -21
  45. package/src/module/dashboard/entity/dashboard_page_data.entity.ts +27 -27
  46. package/src/module/dashboard/entity/widget_master.entity.ts +18 -18
  47. package/src/module/dashboard/repository/dashboard.repository.ts +42 -42
  48. package/src/module/dashboard/service/dashboard.service.ts +73 -73
  49. package/src/module/dev/dev.module.ts +12 -12
  50. package/src/module/dev/service/dev.service.ts +7 -7
  51. package/src/module/enterprise/controller/organization.controller.ts +36 -36
  52. package/src/module/enterprise/enterprise.module.ts +30 -30
  53. package/src/module/enterprise/entity/enterprise.entity.ts +37 -37
  54. package/src/module/enterprise/entity/organization-app-mapping.entity.ts +13 -13
  55. package/src/module/enterprise/entity/organization.entity.ts +92 -92
  56. package/src/module/enterprise/repository/enterprise.repository.ts +31 -31
  57. package/src/module/enterprise/repository/organization.repository.ts +26 -26
  58. package/src/module/enterprise/repository/school.repository.ts +281 -281
  59. package/src/module/enterprise/service/brand.service.ts +5 -5
  60. package/src/module/enterprise/service/enterprise.service.ts +16 -16
  61. package/src/module/enterprise/service/organization-app-mapping.service.ts +4 -4
  62. package/src/module/enterprise/service/organization.service.ts +145 -145
  63. package/src/module/filter/controller/filter.controller.ts +84 -84
  64. package/src/module/filter/dto/filter-request.dto.ts +38 -38
  65. package/src/module/filter/entity/saved-filter-detail.entity.ts +41 -41
  66. package/src/module/filter/entity/saved-filter-master.entity.ts +23 -23
  67. package/src/module/filter/filter.module.ts +31 -31
  68. package/src/module/filter/repository/saved-filter.repository.ts +168 -168
  69. package/src/module/filter/service/filter-evaluator.service.ts +86 -86
  70. package/src/module/filter/service/filter.service.ts +841 -841
  71. package/src/module/filter/service/saved-filter.service.ts +170 -170
  72. package/src/module/ics/controller/ics.controller.ts +21 -21
  73. package/src/module/ics/dto/ics.dto.ts +55 -55
  74. package/src/module/ics/ics.module.ts +13 -13
  75. package/src/module/ics/service/ics.service.ts +57 -57
  76. package/src/module/integration/controller/calender-event.controller.ts +31 -31
  77. package/src/module/integration/controller/integration.controller.ts +662 -662
  78. package/src/module/integration/controller/wrapper.controller.ts +37 -37
  79. package/src/module/integration/dto/create-config.dto.ts +526 -526
  80. package/src/module/integration/entity/integration-config.entity.ts +112 -112
  81. package/src/module/integration/entity/integration-entity-mapper.entity.ts +14 -14
  82. package/src/module/integration/entity/integration-source.entity.ts +17 -17
  83. package/src/module/integration/entity/user-integration.entity.ts +71 -71
  84. package/src/module/integration/examples/usage.example.ts +338 -338
  85. package/src/module/integration/factories/base.factory.ts +7 -7
  86. package/src/module/integration/factories/email.factory.ts +49 -49
  87. package/src/module/integration/factories/integration.factory.ts +121 -121
  88. package/src/module/integration/factories/sms.factory.ts +51 -51
  89. package/src/module/integration/factories/telephone.factory.ts +41 -41
  90. package/src/module/integration/factories/whatsapp.factory.ts +56 -56
  91. package/src/module/integration/integration.module.ts +110 -110
  92. package/src/module/integration/service/calendar-event.service.ts +118 -118
  93. package/src/module/integration/service/integration-entity-mapper.service.ts +17 -17
  94. package/src/module/integration/service/integration-queue.service.ts +229 -229
  95. package/src/module/integration/service/integration.service.ts +2572 -2572
  96. package/src/module/integration/service/oauth.service.ts +224 -224
  97. package/src/module/integration/service/wrapper.service.ts +457 -453
  98. package/src/module/integration/strategies/email/gmail-api.strategy.ts +280 -280
  99. package/src/module/integration/strategies/email/outlook-api.strategy.ts +44 -44
  100. package/src/module/integration/strategies/email/outlook.strategy.ts +64 -64
  101. package/src/module/integration/strategies/email/sendgrid-api.strategy.ts +260 -260
  102. package/src/module/integration/strategies/integration.strategy.ts +97 -97
  103. package/src/module/integration/strategies/sms/gupshup-sms.strategy.ts +146 -146
  104. package/src/module/integration/strategies/sms/msg91-sms.strategy.ts +164 -164
  105. package/src/module/integration/strategies/sms/tubelight-sms.strategy.ts +163 -163
  106. package/src/module/integration/strategies/telephone/ozonetel-voice.strategy.ts +238 -238
  107. package/src/module/integration/strategies/telephone/tubelight-voice.strategy.ts +210 -210
  108. package/src/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.ts +359 -359
  109. package/src/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.ts +372 -372
  110. package/src/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.ts +403 -403
  111. package/src/module/integration/strategies/whatsapp/whatsapp.strategy.ts +57 -57
  112. package/src/module/layout/controller/layout.controller.ts +47 -47
  113. package/src/module/layout/entity/header-items.entity.ts +28 -28
  114. package/src/module/layout/entity/header-section.entity.ts +19 -19
  115. package/src/module/layout/layout.module.ts +21 -21
  116. package/src/module/layout/repository/header-items.repository.ts +18 -18
  117. package/src/module/layout/repository/header-section.repository.ts +22 -22
  118. package/src/module/layout/service/header-section.service.ts +25 -25
  119. package/src/module/layout_preference/controller/layout_preference.controller.ts +47 -47
  120. package/src/module/layout_preference/entity/layout_preference.entity.ts +28 -28
  121. package/src/module/layout_preference/layout_preference.module.ts +18 -18
  122. package/src/module/layout_preference/repository/layout_preference.repository.ts +30 -30
  123. package/src/module/layout_preference/service/layout_preference.service.ts +172 -172
  124. package/src/module/lead/controller/lead.controller.ts +30 -30
  125. package/src/module/lead/lead.module.ts +14 -14
  126. package/src/module/lead/repository/lead.repository.ts +41 -41
  127. package/src/module/lead/service/lead.service.ts +54 -54
  128. package/src/module/listmaster/controller/list-master.controller.ts +187 -187
  129. package/src/module/listmaster/entity/list-master-items.entity.ts +41 -41
  130. package/src/module/listmaster/entity/list-master.entity.ts +32 -32
  131. package/src/module/listmaster/listmaster.module.ts +44 -44
  132. package/src/module/listmaster/repository/list-master-items.repository.ts +169 -169
  133. package/src/module/listmaster/repository/list-master.repository.ts +46 -46
  134. package/src/module/listmaster/service/list-master-engine.ts +19 -19
  135. package/src/module/listmaster/service/list-master-extension.interface.ts +4 -4
  136. package/src/module/listmaster/service/list-master-item.service.ts +292 -292
  137. package/src/module/listmaster/service/list-master-registry.ts +15 -15
  138. package/src/module/listmaster/service/list-master.service.ts +424 -424
  139. package/src/module/mapper/controller/field-mapper.controller.ts +69 -69
  140. package/src/module/mapper/controller/mapper.controller.ts +14 -14
  141. package/src/module/mapper/dto/field-mapper.dto.ts +14 -14
  142. package/src/module/mapper/entity/field-lovs.entity.ts +19 -19
  143. package/src/module/mapper/entity/field-mapper.entity.ts +53 -53
  144. package/src/module/mapper/entity/mapper.entity.ts +16 -16
  145. package/src/module/mapper/mapper.module.ts +34 -34
  146. package/src/module/mapper/repository/field-lovs.repository.ts +35 -35
  147. package/src/module/mapper/repository/field-mapper.repository.ts +42 -42
  148. package/src/module/mapper/repository/mapper.repository.ts +15 -15
  149. package/src/module/mapper/service/field-mapper.service.ts +223 -223
  150. package/src/module/mapper/service/mapper.service.ts +72 -72
  151. package/src/module/master/controller/master.controller.ts +74 -74
  152. package/src/module/master/service/master.service.ts +483 -483
  153. package/src/module/meta/controller/app-master.controller.ts +38 -38
  154. package/src/module/meta/controller/attribute-master.controller.ts +66 -66
  155. package/src/module/meta/controller/entity-dynamic.controller.ts +125 -125
  156. package/src/module/meta/controller/entity-master.controller.ts +28 -28
  157. package/src/module/meta/controller/entity-relation.controller.ts +36 -36
  158. package/src/module/meta/controller/entity.controller.ts +385 -385
  159. package/src/module/meta/controller/media.controller.ts +82 -82
  160. package/src/module/meta/controller/meta.controller.ts +96 -96
  161. package/src/module/meta/controller/view-master.controller.ts +86 -86
  162. package/src/module/meta/dto/entity-list-data.dto.ts +6 -6
  163. package/src/module/meta/dto/entity-tab.dto.ts +4 -4
  164. package/src/module/meta/dto/entity-table.dto.ts +9 -9
  165. package/src/module/meta/entity/app-master.entity.ts +34 -34
  166. package/src/module/meta/entity/attribute-master.entity.ts +87 -87
  167. package/src/module/meta/entity/base-entity.entity.ts +75 -75
  168. package/src/module/meta/entity/entity-master.entity.ts +78 -78
  169. package/src/module/meta/entity/entity-relation-data.entity.ts +29 -29
  170. package/src/module/meta/entity/entity-relation.entity.ts +23 -23
  171. package/src/module/meta/entity/entity-table-column.entity.ts +61 -61
  172. package/src/module/meta/entity/entity-table.entity.ts +50 -50
  173. package/src/module/meta/entity/media-data.entity.ts +32 -32
  174. package/src/module/meta/entity/preference.entity.ts +62 -62
  175. package/src/module/meta/entity/view-master.entity.ts +41 -41
  176. package/src/module/meta/entity.module.ts +156 -156
  177. package/src/module/meta/repository/app-master.repository.ts +20 -20
  178. package/src/module/meta/repository/attribute-master.repository.ts +110 -110
  179. package/src/module/meta/repository/entity-master.repository.ts +69 -69
  180. package/src/module/meta/repository/entity-table-column.repository.ts +39 -39
  181. package/src/module/meta/repository/entity-table.repository.ts +53 -53
  182. package/src/module/meta/repository/media-data.repository.ts +50 -50
  183. package/src/module/meta/repository/preference.repository.ts +20 -20
  184. package/src/module/meta/repository/user-app-mapping.repository.ts +28 -28
  185. package/src/module/meta/repository/view-master.repository.ts +42 -42
  186. package/src/module/meta/service/app-master.service.ts +37 -37
  187. package/src/module/meta/service/attribute-master.service.ts +117 -117
  188. package/src/module/meta/service/common.service.ts +9 -9
  189. package/src/module/meta/service/entity-dynamic.service.ts +762 -762
  190. package/src/module/meta/service/entity-list.service.ts +205 -205
  191. package/src/module/meta/service/entity-master.service.ts +164 -164
  192. package/src/module/meta/service/entity-realation-data.service.ts +9 -9
  193. package/src/module/meta/service/entity-relation.service.ts +69 -69
  194. package/src/module/meta/service/entity-service-impl.service.ts +524 -524
  195. package/src/module/meta/service/entity-table-column.service.ts +39 -39
  196. package/src/module/meta/service/entity-table.service.ts +150 -150
  197. package/src/module/meta/service/entity-validation.service.ts +185 -185
  198. package/src/module/meta/service/entity.service.ts +67 -67
  199. package/src/module/meta/service/field-group.service.ts +103 -103
  200. package/src/module/meta/service/media-data.service.ts +149 -149
  201. package/src/module/meta/service/populate-meta.service.ts +173 -173
  202. package/src/module/meta/service/preference.service.ts +16 -16
  203. package/src/module/meta/service/resolver.service.ts +240 -240
  204. package/src/module/meta/service/section-master.service.ts +104 -104
  205. package/src/module/meta/service/update-form-json.service.ts +22 -22
  206. package/src/module/meta/service/user-app-mapping.service.ts +17 -17
  207. package/src/module/meta/service/view-master.service.ts +111 -111
  208. package/src/module/module/controller/menu.controller.ts +15 -15
  209. package/src/module/module/controller/module-access.controller.ts +132 -132
  210. package/src/module/module/entity/menu.entity.ts +43 -43
  211. package/src/module/module/entity/module-access.entity.ts +25 -25
  212. package/src/module/module/entity/module-action.entity.ts +17 -17
  213. package/src/module/module/entity/module.entity.ts +52 -52
  214. package/src/module/module/module.module.ts +42 -42
  215. package/src/module/module/repository/menu.repository.ts +184 -184
  216. package/src/module/module/repository/module-access.repository.ts +331 -331
  217. package/src/module/module/service/menu.service.ts +82 -82
  218. package/src/module/module/service/module-access.service.ts +209 -209
  219. package/src/module/notification/controller/notification.controller.ts +58 -58
  220. package/src/module/notification/controller/otp.controller.ts +117 -117
  221. package/src/module/notification/entity/notification.entity.ts +26 -26
  222. package/src/module/notification/entity/otp.entity.ts +28 -28
  223. package/src/module/notification/firebase-admin.config.ts +22 -22
  224. package/src/module/notification/notification.module.ts +69 -69
  225. package/src/module/notification/repository/otp.repository.ts +27 -27
  226. package/src/module/notification/service/email.service.ts +127 -127
  227. package/src/module/notification/service/notification.service.ts +138 -138
  228. package/src/module/notification/service/otp.service.ts +125 -125
  229. package/src/module/third-party-module/entity/third-party-api-registry.entity.ts +52 -52
  230. package/src/module/third-party-module/repository/third-party-api-registry.repository.ts +20 -20
  231. package/src/module/third-party-module/service/api-registry.service.ts +13 -13
  232. package/src/module/third-party-module/third-party.module.ts +12 -12
  233. package/src/module/user/controller/login.controller.ts +197 -197
  234. package/src/module/user/controller/user.controller.ts +40 -40
  235. package/src/module/user/dto/create-user.dto.ts +62 -62
  236. package/src/module/user/dto/update-user.dto.ts +4 -4
  237. package/src/module/user/entity/role.entity.ts +33 -33
  238. package/src/module/user/entity/user-role-mapping.entity.ts +38 -38
  239. package/src/module/user/entity/user-session.entity.ts +61 -61
  240. package/src/module/user/entity/user.entity.ts +68 -68
  241. package/src/module/user/repository/role.repository.ts +96 -96
  242. package/src/module/user/repository/user-role-mapping.repository.ts +126 -126
  243. package/src/module/user/repository/user.repository.ts +50 -50
  244. package/src/module/user/repository/userSession.repository.ts +33 -33
  245. package/src/module/user/service/login.service.ts +280 -280
  246. package/src/module/user/service/role.service.ts +189 -189
  247. package/src/module/user/service/user-role-mapping.service.ts +98 -98
  248. package/src/module/user/service/user-session.service.ts +168 -168
  249. package/src/module/user/service/user.service.ts +353 -353
  250. package/src/module/user/user.module.ts +65 -65
  251. package/src/module/workflow/controller/action-category.controller.ts +54 -54
  252. package/src/module/workflow/controller/action-resource-mapping.controller.ts +23 -23
  253. package/src/module/workflow/controller/action-template-mapping.controller.ts +35 -35
  254. package/src/module/workflow/controller/action.controller.ts +95 -95
  255. package/src/module/workflow/controller/activity-log.controller.ts +55 -55
  256. package/src/module/workflow/controller/comm-template.controller.ts +34 -34
  257. package/src/module/workflow/controller/entity-modification.controller.ts +35 -35
  258. package/src/module/workflow/controller/form-master.controller.ts +43 -43
  259. package/src/module/workflow/controller/stage-group.controller.ts +48 -48
  260. package/src/module/workflow/controller/stage.controller.ts +50 -50
  261. package/src/module/workflow/controller/task.controller.ts +77 -77
  262. package/src/module/workflow/controller/workflow-list-master.controller.ts +44 -44
  263. package/src/module/workflow/controller/workflow-meta.controller.ts +80 -80
  264. package/src/module/workflow/controller/workflow.controller.ts +67 -67
  265. package/src/module/workflow/entity/action-category.entity.ts +38 -38
  266. package/src/module/workflow/entity/action-data.entity.ts +55 -55
  267. package/src/module/workflow/entity/action-resources-mapping.entity.ts +29 -29
  268. package/src/module/workflow/entity/action-template-mapping.entity.ts +17 -17
  269. package/src/module/workflow/entity/action.entity.ts +50 -50
  270. package/src/module/workflow/entity/activity-log.entity.ts +43 -43
  271. package/src/module/workflow/entity/comm-template.entity.ts +43 -43
  272. package/src/module/workflow/entity/entity-modification.entity.ts +38 -38
  273. package/src/module/workflow/entity/form.entity.ts +25 -25
  274. package/src/module/workflow/entity/stage-action-mapping.entity.ts +17 -17
  275. package/src/module/workflow/entity/stage-group.entity.ts +23 -23
  276. package/src/module/workflow/entity/stage-movement-data.entity.ts +38 -38
  277. package/src/module/workflow/entity/stage.entity.ts +20 -20
  278. package/src/module/workflow/entity/task-data.entity.ts +88 -88
  279. package/src/module/workflow/entity/template-attach-mapper.entity.ts +30 -30
  280. package/src/module/workflow/entity/workflow-data.entity.ts +11 -11
  281. package/src/module/workflow/entity/workflow-level-mapping.entity.ts +18 -18
  282. package/src/module/workflow/entity/workflow.entity.ts +20 -20
  283. package/src/module/workflow/repository/action-category.repository.ts +79 -79
  284. package/src/module/workflow/repository/action-data.repository.ts +219 -219
  285. package/src/module/workflow/repository/action.repository.ts +277 -277
  286. package/src/module/workflow/repository/activity-log.repository.ts +121 -121
  287. package/src/module/workflow/repository/comm-template.repository.ts +142 -142
  288. package/src/module/workflow/repository/form-master.repository.ts +59 -59
  289. package/src/module/workflow/repository/stage-group.repository.ts +176 -176
  290. package/src/module/workflow/repository/stage-movement.repository.ts +227 -227
  291. package/src/module/workflow/repository/stage.repository.ts +172 -172
  292. package/src/module/workflow/repository/task.repository.ts +117 -117
  293. package/src/module/workflow/repository/workflow.repository.ts +42 -42
  294. package/src/module/workflow/service/action-category.service.ts +33 -33
  295. package/src/module/workflow/service/action-data.service.ts +62 -62
  296. package/src/module/workflow/service/action-resources-mapping.service.ts +10 -10
  297. package/src/module/workflow/service/action-template-mapping.service.ts +55 -55
  298. package/src/module/workflow/service/action.service.ts +263 -263
  299. package/src/module/workflow/service/activity-log.service.ts +107 -107
  300. package/src/module/workflow/service/comm-template.service.ts +121 -121
  301. package/src/module/workflow/service/entity-modification.service.ts +67 -67
  302. package/src/module/workflow/service/form-master.service.ts +35 -35
  303. package/src/module/workflow/service/populate-workflow.service.ts +303 -303
  304. package/src/module/workflow/service/stage-action-mapping.service.ts +5 -5
  305. package/src/module/workflow/service/stage-group.service.ts +300 -300
  306. package/src/module/workflow/service/stage.service.ts +199 -199
  307. package/src/module/workflow/service/task.service.ts +531 -504
  308. package/src/module/workflow/service/workflow-list-master.service.ts +60 -60
  309. package/src/module/workflow/service/workflow-meta.service.ts +581 -581
  310. package/src/module/workflow/service/workflow.service.ts +205 -205
  311. package/src/module/workflow/workflow.module.ts +172 -172
  312. package/src/module/workflow-automation/controller/workflow-automation.controller.ts +21 -21
  313. package/src/module/workflow-automation/entity/workflow-automation-action.entity.ts +26 -26
  314. package/src/module/workflow-automation/entity/workflow-automation.entity.ts +35 -35
  315. package/src/module/workflow-automation/interface/action.decorator.ts +7 -7
  316. package/src/module/workflow-automation/interface/action.interface.ts +5 -5
  317. package/src/module/workflow-automation/service/action-registery.service.ts +35 -35
  318. package/src/module/workflow-automation/service/workflow-automation-engine.service.ts +214 -214
  319. package/src/module/workflow-automation/service/workflow-automation.service.ts +345 -345
  320. package/src/module/workflow-automation/workflow-automation.module.ts +34 -34
  321. package/src/resources/dev.properties.yaml +30 -30
  322. package/src/resources/local.properties.yaml +27 -27
  323. package/src/resources/properties.module.ts +12 -12
  324. package/src/resources/properties.yaml.ts +11 -11
  325. package/src/resources/uat.properties.yaml +15 -15
  326. package/src/utils/dto/excel-data.dto.ts +14 -14
  327. package/src/utils/dto/excelsheet-data.dto.ts +5 -5
  328. package/src/utils/service/base64util.service.ts +18 -18
  329. package/src/utils/service/clockIDGenUtil.service.ts +21 -21
  330. package/src/utils/service/codeGenerator.service.ts +22 -22
  331. package/src/utils/service/dateUtil.service.ts +17 -17
  332. package/src/utils/service/encryptUtil.service.ts +97 -97
  333. package/src/utils/service/excel-helper.service.ts +72 -72
  334. package/src/utils/service/excelUtil.service.ts +15 -15
  335. package/src/utils/service/file-util.service.ts +11 -11
  336. package/src/utils/service/json-util.service.ts +23 -23
  337. package/src/utils/service/loggingUtil.service.ts +34 -34
  338. package/src/utils/service/reflection-helper.service.ts +62 -62
  339. package/src/utils/service/wbsCodeGen.service.ts +8 -8
  340. package/src/utils/utils.module.ts +25 -25
  341. package/tsconfig.build.json +4 -4
  342. package/tsconfig.json +24 -24
  343. package/.vscode/extensions.json +0 -5
  344. package/dist/app.controller.d.ts +0 -6
  345. package/dist/app.controller.js +0 -34
  346. package/dist/app.controller.js.map +0 -1
  347. package/dist/app.module.d.ts +0 -2
  348. package/dist/app.module.js +0 -62
  349. package/dist/app.module.js.map +0 -1
  350. package/dist/app.service.d.ts +0 -3
  351. package/dist/app.service.js +0 -20
  352. package/dist/app.service.js.map +0 -1
  353. package/dist/config/config.module.d.ts +0 -2
  354. package/dist/config/config.module.js +0 -29
  355. package/dist/config/config.module.js.map +0 -1
  356. package/dist/config/database.config.d.ts +0 -7
  357. package/dist/config/database.config.js +0 -39
  358. package/dist/config/database.config.js.map +0 -1
  359. package/dist/constant/global.constant.d.ts +0 -50
  360. package/dist/constant/global.constant.js +0 -54
  361. package/dist/constant/global.constant.js.map +0 -1
  362. package/dist/core.module.d.ts +0 -4
  363. package/dist/core.module.js +0 -79
  364. package/dist/core.module.js.map +0 -1
  365. package/dist/decorators/roles.decorator.d.ts +0 -1
  366. package/dist/decorators/roles.decorator.js +0 -7
  367. package/dist/decorators/roles.decorator.js.map +0 -1
  368. package/dist/dtos/response.d.ts +0 -5
  369. package/dist/dtos/response.dto.d.ts +0 -5
  370. package/dist/dtos/response.dto.js +0 -3
  371. package/dist/dtos/response.dto.js.map +0 -1
  372. package/dist/dtos/response.js +0 -3
  373. package/dist/dtos/response.js.map +0 -1
  374. package/dist/index.d.ts +0 -1
  375. package/dist/index.js +0 -18
  376. package/dist/index.js.map +0 -1
  377. package/dist/main.d.ts +0 -1
  378. package/dist/main.js +0 -25
  379. package/dist/main.js.map +0 -1
  380. package/dist/module/auth/auth.module.d.ts +0 -2
  381. package/dist/module/auth/auth.module.js +0 -57
  382. package/dist/module/auth/auth.module.js.map +0 -1
  383. package/dist/module/auth/controller/auth.controller.d.ts +0 -8
  384. package/dist/module/auth/controller/auth.controller.js +0 -51
  385. package/dist/module/auth/controller/auth.controller.js.map +0 -1
  386. package/dist/module/auth/guards/google-auth.guard.d.ts +0 -6
  387. package/dist/module/auth/guards/google-auth.guard.js +0 -21
  388. package/dist/module/auth/guards/google-auth.guard.js.map +0 -1
  389. package/dist/module/auth/guards/jwt.guard.d.ts +0 -10
  390. package/dist/module/auth/guards/jwt.guard.js +0 -36
  391. package/dist/module/auth/guards/jwt.guard.js.map +0 -1
  392. package/dist/module/auth/guards/role.guard.d.ts +0 -9
  393. package/dist/module/auth/guards/role.guard.js +0 -59
  394. package/dist/module/auth/guards/role.guard.js.map +0 -1
  395. package/dist/module/auth/services/auth.service.d.ts +0 -14
  396. package/dist/module/auth/services/auth.service.js +0 -39
  397. package/dist/module/auth/services/auth.service.js.map +0 -1
  398. package/dist/module/auth/services/jwt.service.d.ts +0 -6
  399. package/dist/module/auth/services/jwt.service.js +0 -28
  400. package/dist/module/auth/services/jwt.service.js.map +0 -1
  401. package/dist/module/auth/strategies/google.strategy.d.ts +0 -10
  402. package/dist/module/auth/strategies/google.strategy.js +0 -59
  403. package/dist/module/auth/strategies/google.strategy.js.map +0 -1
  404. package/dist/module/auth/strategies/jwt.strategy.d.ts +0 -19
  405. package/dist/module/auth/strategies/jwt.strategy.js +0 -46
  406. package/dist/module/auth/strategies/jwt.strategy.js.map +0 -1
  407. package/dist/module/auth/strategies/local.strategy.d.ts +0 -7
  408. package/dist/module/auth/strategies/local.strategy.js +0 -30
  409. package/dist/module/auth/strategies/local.strategy.js.map +0 -1
  410. package/dist/module/dashboard/controller/dashboard.controller.d.ts +0 -33
  411. package/dist/module/dashboard/controller/dashboard.controller.js +0 -55
  412. package/dist/module/dashboard/controller/dashboard.controller.js.map +0 -1
  413. package/dist/module/dashboard/dashboard.module.d.ts +0 -2
  414. package/dist/module/dashboard/dashboard.module.js +0 -34
  415. package/dist/module/dashboard/dashboard.module.js.map +0 -1
  416. package/dist/module/dashboard/entity/dashboard_page_data.entity.d.ts +0 -10
  417. package/dist/module/dashboard/entity/dashboard_page_data.entity.js +0 -50
  418. package/dist/module/dashboard/entity/dashboard_page_data.entity.js.map +0 -1
  419. package/dist/module/dashboard/entity/widget_master.entity.d.ts +0 -7
  420. package/dist/module/dashboard/entity/widget_master.entity.js +0 -38
  421. package/dist/module/dashboard/entity/widget_master.entity.js.map +0 -1
  422. package/dist/module/dashboard/repository/dashboard.repository.d.ts +0 -10
  423. package/dist/module/dashboard/repository/dashboard.repository.js +0 -50
  424. package/dist/module/dashboard/repository/dashboard.repository.js.map +0 -1
  425. package/dist/module/dashboard/service/dashboard.service.d.ts +0 -35
  426. package/dist/module/dashboard/service/dashboard.service.js +0 -62
  427. package/dist/module/dashboard/service/dashboard.service.js.map +0 -1
  428. package/dist/module/dev/dev.module.d.ts +0 -2
  429. package/dist/module/dev/dev.module.js +0 -25
  430. package/dist/module/dev/dev.module.js.map +0 -1
  431. package/dist/module/dev/service/dev.service.d.ts +0 -5
  432. package/dist/module/dev/service/dev.service.js +0 -25
  433. package/dist/module/dev/service/dev.service.js.map +0 -1
  434. package/dist/module/enterprise/controller/organization.controller.d.ts +0 -14
  435. package/dist/module/enterprise/controller/organization.controller.js +0 -59
  436. package/dist/module/enterprise/controller/organization.controller.js.map +0 -1
  437. package/dist/module/enterprise/enterprise.module.d.ts +0 -2
  438. package/dist/module/enterprise/enterprise.module.js +0 -43
  439. package/dist/module/enterprise/enterprise.module.js.map +0 -1
  440. package/dist/module/enterprise/entity/enterprise.entity.d.ts +0 -13
  441. package/dist/module/enterprise/entity/enterprise.entity.js +0 -64
  442. package/dist/module/enterprise/entity/enterprise.entity.js.map +0 -1
  443. package/dist/module/enterprise/entity/organization-app-mapping.entity.d.ts +0 -5
  444. package/dist/module/enterprise/entity/organization-app-mapping.entity.js +0 -32
  445. package/dist/module/enterprise/entity/organization-app-mapping.entity.js.map +0 -1
  446. package/dist/module/enterprise/entity/organization.entity.d.ts +0 -30
  447. package/dist/module/enterprise/entity/organization.entity.js +0 -136
  448. package/dist/module/enterprise/entity/organization.entity.js.map +0 -1
  449. package/dist/module/enterprise/repository/enterprise.repository.d.ts +0 -8
  450. package/dist/module/enterprise/repository/enterprise.repository.js +0 -48
  451. package/dist/module/enterprise/repository/enterprise.repository.js.map +0 -1
  452. package/dist/module/enterprise/repository/organization.repository.d.ts +0 -8
  453. package/dist/module/enterprise/repository/organization.repository.js +0 -41
  454. package/dist/module/enterprise/repository/organization.repository.js.map +0 -1
  455. package/dist/module/enterprise/repository/school.repository.d.ts +0 -8
  456. package/dist/module/enterprise/repository/school.repository.js +0 -244
  457. package/dist/module/enterprise/repository/school.repository.js.map +0 -1
  458. package/dist/module/enterprise/service/brand.service.d.ts +0 -3
  459. package/dist/module/enterprise/service/brand.service.js +0 -18
  460. package/dist/module/enterprise/service/brand.service.js.map +0 -1
  461. package/dist/module/enterprise/service/enterprise.service.d.ts +0 -8
  462. package/dist/module/enterprise/service/enterprise.service.js +0 -31
  463. package/dist/module/enterprise/service/enterprise.service.js.map +0 -1
  464. package/dist/module/enterprise/service/organization-app-mapping.service.d.ts +0 -2
  465. package/dist/module/enterprise/service/organization-app-mapping.service.js +0 -17
  466. package/dist/module/enterprise/service/organization-app-mapping.service.js.map +0 -1
  467. package/dist/module/enterprise/service/organization.service.d.ts +0 -19
  468. package/dist/module/enterprise/service/organization.service.js +0 -121
  469. package/dist/module/enterprise/service/organization.service.js.map +0 -1
  470. package/dist/module/filter/controller/filter.controller.d.ts +0 -39
  471. package/dist/module/filter/controller/filter.controller.js +0 -91
  472. package/dist/module/filter/controller/filter.controller.js.map +0 -1
  473. package/dist/module/filter/dto/filter-request.dto.d.ts +0 -35
  474. package/dist/module/filter/dto/filter-request.dto.js +0 -3
  475. package/dist/module/filter/dto/filter-request.dto.js.map +0 -1
  476. package/dist/module/filter/entity/saved-filter-detail.entity.d.ts +0 -14
  477. package/dist/module/filter/entity/saved-filter-detail.entity.js +0 -67
  478. package/dist/module/filter/entity/saved-filter-detail.entity.js.map +0 -1
  479. package/dist/module/filter/entity/saved-filter-master.entity.d.ts +0 -8
  480. package/dist/module/filter/entity/saved-filter-master.entity.js +0 -43
  481. package/dist/module/filter/entity/saved-filter-master.entity.js.map +0 -1
  482. package/dist/module/filter/filter.module.d.ts +0 -2
  483. package/dist/module/filter/filter.module.js +0 -44
  484. package/dist/module/filter/filter.module.js.map +0 -1
  485. package/dist/module/filter/repository/saved-filter.repository.d.ts +0 -40
  486. package/dist/module/filter/repository/saved-filter.repository.js +0 -144
  487. package/dist/module/filter/repository/saved-filter.repository.js.map +0 -1
  488. package/dist/module/filter/service/filter-evaluator.service.d.ts +0 -9
  489. package/dist/module/filter/service/filter-evaluator.service.js +0 -62
  490. package/dist/module/filter/service/filter-evaluator.service.js.map +0 -1
  491. package/dist/module/filter/service/filter.service.d.ts +0 -68
  492. package/dist/module/filter/service/filter.service.js +0 -612
  493. package/dist/module/filter/service/filter.service.js.map +0 -1
  494. package/dist/module/filter/service/saved-filter.service.d.ts +0 -30
  495. package/dist/module/filter/service/saved-filter.service.js +0 -125
  496. package/dist/module/filter/service/saved-filter.service.js.map +0 -1
  497. package/dist/module/ics/controller/ics.controller.d.ts +0 -8
  498. package/dist/module/ics/controller/ics.controller.js +0 -45
  499. package/dist/module/ics/controller/ics.controller.js.map +0 -1
  500. package/dist/module/ics/dto/ics.dto.d.ts +0 -17
  501. package/dist/module/ics/dto/ics.dto.js +0 -73
  502. package/dist/module/ics/dto/ics.dto.js.map +0 -1
  503. package/dist/module/ics/ics.module.d.ts +0 -2
  504. package/dist/module/ics/ics.module.js +0 -26
  505. package/dist/module/ics/ics.module.js.map +0 -1
  506. package/dist/module/ics/service/ics.service.d.ts +0 -4
  507. package/dist/module/ics/service/ics.service.js +0 -61
  508. package/dist/module/ics/service/ics.service.js.map +0 -1
  509. package/dist/module/integration/controller/calender-event.controller.d.ts +0 -7
  510. package/dist/module/integration/controller/calender-event.controller.js +0 -51
  511. package/dist/module/integration/controller/calender-event.controller.js.map +0 -1
  512. package/dist/module/integration/controller/integration.controller.d.ts +0 -165
  513. package/dist/module/integration/controller/integration.controller.js +0 -697
  514. package/dist/module/integration/controller/integration.controller.js.map +0 -1
  515. package/dist/module/integration/controller/wrapper.controller.d.ts +0 -23
  516. package/dist/module/integration/controller/wrapper.controller.js +0 -54
  517. package/dist/module/integration/controller/wrapper.controller.js.map +0 -1
  518. package/dist/module/integration/dto/create-config.dto.d.ts +0 -217
  519. package/dist/module/integration/dto/create-config.dto.js +0 -495
  520. package/dist/module/integration/dto/create-config.dto.js.map +0 -1
  521. package/dist/module/integration/entity/integration-config.entity.d.ts +0 -54
  522. package/dist/module/integration/entity/integration-config.entity.js +0 -78
  523. package/dist/module/integration/entity/integration-config.entity.js.map +0 -1
  524. package/dist/module/integration/entity/integration-entity-mapper.entity.d.ts +0 -6
  525. package/dist/module/integration/entity/integration-entity-mapper.entity.js +0 -33
  526. package/dist/module/integration/entity/integration-entity-mapper.entity.js.map +0 -1
  527. package/dist/module/integration/entity/integration-source.entity.d.ts +0 -7
  528. package/dist/module/integration/entity/integration-source.entity.js +0 -37
  529. package/dist/module/integration/entity/integration-source.entity.js.map +0 -1
  530. package/dist/module/integration/entity/user-integration.entity.d.ts +0 -23
  531. package/dist/module/integration/entity/user-integration.entity.js +0 -70
  532. package/dist/module/integration/entity/user-integration.entity.js.map +0 -1
  533. package/dist/module/integration/examples/usage.example.d.ts +0 -16
  534. package/dist/module/integration/examples/usage.example.js +0 -217
  535. package/dist/module/integration/examples/usage.example.js.map +0 -1
  536. package/dist/module/integration/factories/base.factory.d.ts +0 -9
  537. package/dist/module/integration/factories/base.factory.js +0 -3
  538. package/dist/module/integration/factories/base.factory.js.map +0 -1
  539. package/dist/module/integration/factories/email.factory.d.ts +0 -17
  540. package/dist/module/integration/factories/email.factory.js +0 -55
  541. package/dist/module/integration/factories/email.factory.js.map +0 -1
  542. package/dist/module/integration/factories/integration.factory.d.ts +0 -33
  543. package/dist/module/integration/factories/integration.factory.js +0 -104
  544. package/dist/module/integration/factories/integration.factory.js.map +0 -1
  545. package/dist/module/integration/factories/sms.factory.d.ts +0 -17
  546. package/dist/module/integration/factories/sms.factory.js +0 -58
  547. package/dist/module/integration/factories/sms.factory.js.map +0 -1
  548. package/dist/module/integration/factories/telephone.factory.d.ts +0 -15
  549. package/dist/module/integration/factories/telephone.factory.js +0 -49
  550. package/dist/module/integration/factories/telephone.factory.js.map +0 -1
  551. package/dist/module/integration/factories/whatsapp.factory.d.ts +0 -19
  552. package/dist/module/integration/factories/whatsapp.factory.js +0 -63
  553. package/dist/module/integration/factories/whatsapp.factory.js.map +0 -1
  554. package/dist/module/integration/integration.module.d.ts +0 -2
  555. package/dist/module/integration/integration.module.js +0 -96
  556. package/dist/module/integration/integration.module.js.map +0 -1
  557. package/dist/module/integration/service/calendar-event.service.d.ts +0 -8
  558. package/dist/module/integration/service/calendar-event.service.js +0 -101
  559. package/dist/module/integration/service/calendar-event.service.js.map +0 -1
  560. package/dist/module/integration/service/integration-entity-mapper.service.d.ts +0 -7
  561. package/dist/module/integration/service/integration-entity-mapper.service.js +0 -36
  562. package/dist/module/integration/service/integration-entity-mapper.service.js.map +0 -1
  563. package/dist/module/integration/service/integration-queue.service.d.ts +0 -40
  564. package/dist/module/integration/service/integration-queue.service.js +0 -147
  565. package/dist/module/integration/service/integration-queue.service.js.map +0 -1
  566. package/dist/module/integration/service/integration.service.d.ts +0 -198
  567. package/dist/module/integration/service/integration.service.js +0 -1558
  568. package/dist/module/integration/service/integration.service.js.map +0 -1
  569. package/dist/module/integration/service/oauth.service.d.ts +0 -18
  570. package/dist/module/integration/service/oauth.service.js +0 -190
  571. package/dist/module/integration/service/oauth.service.js.map +0 -1
  572. package/dist/module/integration/service/wrapper.service.d.ts +0 -36
  573. package/dist/module/integration/service/wrapper.service.js +0 -299
  574. package/dist/module/integration/service/wrapper.service.js.map +0 -1
  575. package/dist/module/integration/strategies/email/gmail-api.strategy.d.ts +0 -13
  576. package/dist/module/integration/strategies/email/gmail-api.strategy.js +0 -195
  577. package/dist/module/integration/strategies/email/gmail-api.strategy.js.map +0 -1
  578. package/dist/module/integration/strategies/email/outlook-api.strategy.d.ts +0 -5
  579. package/dist/module/integration/strategies/email/outlook-api.strategy.js +0 -44
  580. package/dist/module/integration/strategies/email/outlook-api.strategy.js.map +0 -1
  581. package/dist/module/integration/strategies/email/outlook.strategy.d.ts +0 -5
  582. package/dist/module/integration/strategies/email/outlook.strategy.js +0 -64
  583. package/dist/module/integration/strategies/email/outlook.strategy.js.map +0 -1
  584. package/dist/module/integration/strategies/email/sendgrid-api.strategy.d.ts +0 -22
  585. package/dist/module/integration/strategies/email/sendgrid-api.strategy.js +0 -203
  586. package/dist/module/integration/strategies/email/sendgrid-api.strategy.js.map +0 -1
  587. package/dist/module/integration/strategies/integration.strategy.d.ts +0 -31
  588. package/dist/module/integration/strategies/integration.strategy.js +0 -40
  589. package/dist/module/integration/strategies/integration.strategy.js.map +0 -1
  590. package/dist/module/integration/strategies/sms/gupshup-sms.strategy.d.ts +0 -9
  591. package/dist/module/integration/strategies/sms/gupshup-sms.strategy.js +0 -104
  592. package/dist/module/integration/strategies/sms/gupshup-sms.strategy.js.map +0 -1
  593. package/dist/module/integration/strategies/sms/msg91-sms.strategy.d.ts +0 -9
  594. package/dist/module/integration/strategies/sms/msg91-sms.strategy.js +0 -113
  595. package/dist/module/integration/strategies/sms/msg91-sms.strategy.js.map +0 -1
  596. package/dist/module/integration/strategies/sms/tubelight-sms.strategy.d.ts +0 -9
  597. package/dist/module/integration/strategies/sms/tubelight-sms.strategy.js +0 -109
  598. package/dist/module/integration/strategies/sms/tubelight-sms.strategy.js.map +0 -1
  599. package/dist/module/integration/strategies/telephone/ozonetel-voice.strategy.d.ts +0 -22
  600. package/dist/module/integration/strategies/telephone/ozonetel-voice.strategy.js +0 -170
  601. package/dist/module/integration/strategies/telephone/ozonetel-voice.strategy.js.map +0 -1
  602. package/dist/module/integration/strategies/telephone/tubelight-voice.strategy.d.ts +0 -24
  603. package/dist/module/integration/strategies/telephone/tubelight-voice.strategy.js +0 -152
  604. package/dist/module/integration/strategies/telephone/tubelight-voice.strategy.js.map +0 -1
  605. package/dist/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.d.ts +0 -19
  606. package/dist/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.js +0 -257
  607. package/dist/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.js.map +0 -1
  608. package/dist/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.d.ts +0 -33
  609. package/dist/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.js +0 -256
  610. package/dist/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.js.map +0 -1
  611. package/dist/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.d.ts +0 -20
  612. package/dist/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.js +0 -264
  613. package/dist/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.js.map +0 -1
  614. package/dist/module/integration/strategies/whatsapp/whatsapp.strategy.d.ts +0 -5
  615. package/dist/module/integration/strategies/whatsapp/whatsapp.strategy.js +0 -57
  616. package/dist/module/integration/strategies/whatsapp/whatsapp.strategy.js.map +0 -1
  617. package/dist/module/layout/controller/layout.controller.d.ts +0 -11
  618. package/dist/module/layout/controller/layout.controller.js +0 -59
  619. package/dist/module/layout/controller/layout.controller.js.map +0 -1
  620. package/dist/module/layout/dto/header.dto.d.ts +0 -0
  621. package/dist/module/layout/dto/header.dto.js +0 -1
  622. package/dist/module/layout/dto/header.dto.js.map +0 -1
  623. package/dist/module/layout/entity/header-items.entity.d.ts +0 -10
  624. package/dist/module/layout/entity/header-items.entity.js +0 -52
  625. package/dist/module/layout/entity/header-items.entity.js.map +0 -1
  626. package/dist/module/layout/entity/header-section.entity.d.ts +0 -7
  627. package/dist/module/layout/entity/header-section.entity.js +0 -40
  628. package/dist/module/layout/entity/header-section.entity.js.map +0 -1
  629. package/dist/module/layout/layout.module.d.ts +0 -2
  630. package/dist/module/layout/layout.module.js +0 -34
  631. package/dist/module/layout/layout.module.js.map +0 -1
  632. package/dist/module/layout/repository/header-items.repository.d.ts +0 -7
  633. package/dist/module/layout/repository/header-items.repository.js +0 -36
  634. package/dist/module/layout/repository/header-items.repository.js.map +0 -1
  635. package/dist/module/layout/repository/header-section.repository.d.ts +0 -8
  636. package/dist/module/layout/repository/header-section.repository.js +0 -39
  637. package/dist/module/layout/repository/header-section.repository.js.map +0 -1
  638. package/dist/module/layout/service/header-section.service.d.ts +0 -8
  639. package/dist/module/layout/service/header-section.service.js +0 -37
  640. package/dist/module/layout/service/header-section.service.js.map +0 -1
  641. package/dist/module/layout_preference/controller/layout_preference.controller.d.ts +0 -13
  642. package/dist/module/layout_preference/controller/layout_preference.controller.js +0 -59
  643. package/dist/module/layout_preference/controller/layout_preference.controller.js.map +0 -1
  644. package/dist/module/layout_preference/dto/layout_preference.dto.d.ts +0 -0
  645. package/dist/module/layout_preference/dto/layout_preference.dto.js +0 -1
  646. package/dist/module/layout_preference/dto/layout_preference.dto.js.map +0 -1
  647. package/dist/module/layout_preference/entity/layout_preference.entity.d.ts +0 -9
  648. package/dist/module/layout_preference/entity/layout_preference.entity.js +0 -50
  649. package/dist/module/layout_preference/entity/layout_preference.entity.js.map +0 -1
  650. package/dist/module/layout_preference/layout_preference.module.d.ts +0 -2
  651. package/dist/module/layout_preference/layout_preference.module.js +0 -31
  652. package/dist/module/layout_preference/layout_preference.module.js.map +0 -1
  653. package/dist/module/layout_preference/repository/layout_preference.repository.d.ts +0 -7
  654. package/dist/module/layout_preference/repository/layout_preference.repository.js +0 -42
  655. package/dist/module/layout_preference/repository/layout_preference.repository.js.map +0 -1
  656. package/dist/module/layout_preference/service/layout_preference.service.d.ts +0 -16
  657. package/dist/module/layout_preference/service/layout_preference.service.js +0 -117
  658. package/dist/module/layout_preference/service/layout_preference.service.js.map +0 -1
  659. package/dist/module/lead/controller/lead.controller.d.ts +0 -20
  660. package/dist/module/lead/controller/lead.controller.js +0 -58
  661. package/dist/module/lead/controller/lead.controller.js.map +0 -1
  662. package/dist/module/lead/lead.module.d.ts +0 -2
  663. package/dist/module/lead/lead.module.js +0 -26
  664. package/dist/module/lead/lead.module.js.map +0 -1
  665. package/dist/module/lead/repository/lead.repository.d.ts +0 -10
  666. package/dist/module/lead/repository/lead.repository.js +0 -53
  667. package/dist/module/lead/repository/lead.repository.js.map +0 -1
  668. package/dist/module/lead/service/lead.service.d.ts +0 -20
  669. package/dist/module/lead/service/lead.service.js +0 -55
  670. package/dist/module/lead/service/lead.service.js.map +0 -1
  671. package/dist/module/listmaster/controller/list-master.controller.d.ts +0 -22
  672. package/dist/module/listmaster/controller/list-master.controller.js +0 -156
  673. package/dist/module/listmaster/controller/list-master.controller.js.map +0 -1
  674. package/dist/module/listmaster/entity/list-master-items.entity.d.ts +0 -14
  675. package/dist/module/listmaster/entity/list-master-items.entity.js +0 -67
  676. package/dist/module/listmaster/entity/list-master-items.entity.js.map +0 -1
  677. package/dist/module/listmaster/entity/list-master.entity.d.ts +0 -11
  678. package/dist/module/listmaster/entity/list-master.entity.js +0 -55
  679. package/dist/module/listmaster/entity/list-master.entity.js.map +0 -1
  680. package/dist/module/listmaster/listmaster.module.d.ts +0 -2
  681. package/dist/module/listmaster/listmaster.module.js +0 -53
  682. package/dist/module/listmaster/listmaster.module.js.map +0 -1
  683. package/dist/module/listmaster/repository/list-master-items.repository.d.ts +0 -21
  684. package/dist/module/listmaster/repository/list-master-items.repository.js +0 -142
  685. package/dist/module/listmaster/repository/list-master-items.repository.js.map +0 -1
  686. package/dist/module/listmaster/repository/list-master.repository.d.ts +0 -9
  687. package/dist/module/listmaster/repository/list-master.repository.js +0 -53
  688. package/dist/module/listmaster/repository/list-master.repository.js.map +0 -1
  689. package/dist/module/listmaster/service/list-master-engine.d.ts +0 -6
  690. package/dist/module/listmaster/service/list-master-engine.js +0 -35
  691. package/dist/module/listmaster/service/list-master-engine.js.map +0 -1
  692. package/dist/module/listmaster/service/list-master-extension.interface.d.ts +0 -4
  693. package/dist/module/listmaster/service/list-master-extension.interface.js +0 -3
  694. package/dist/module/listmaster/service/list-master-extension.interface.js.map +0 -1
  695. package/dist/module/listmaster/service/list-master-item.service.d.ts +0 -19
  696. package/dist/module/listmaster/service/list-master-item.service.js +0 -151
  697. package/dist/module/listmaster/service/list-master-item.service.js.map +0 -1
  698. package/dist/module/listmaster/service/list-master-registry.d.ts +0 -6
  699. package/dist/module/listmaster/service/list-master-registry.js +0 -26
  700. package/dist/module/listmaster/service/list-master-registry.js.map +0 -1
  701. package/dist/module/listmaster/service/list-master.service.d.ts +0 -36
  702. package/dist/module/listmaster/service/list-master.service.js +0 -270
  703. package/dist/module/listmaster/service/list-master.service.js.map +0 -1
  704. package/dist/module/mapper/controller/field-mapper.controller.d.ts +0 -11
  705. package/dist/module/mapper/controller/field-mapper.controller.js +0 -94
  706. package/dist/module/mapper/controller/field-mapper.controller.js.map +0 -1
  707. package/dist/module/mapper/controller/mapper.controller.d.ts +0 -6
  708. package/dist/module/mapper/controller/mapper.controller.js +0 -40
  709. package/dist/module/mapper/controller/mapper.controller.js.map +0 -1
  710. package/dist/module/mapper/dto/field-mapper.dto.d.ts +0 -12
  711. package/dist/module/mapper/dto/field-mapper.dto.js +0 -8
  712. package/dist/module/mapper/dto/field-mapper.dto.js.map +0 -1
  713. package/dist/module/mapper/entity/field-lovs.entity.d.ts +0 -7
  714. package/dist/module/mapper/entity/field-lovs.entity.js +0 -38
  715. package/dist/module/mapper/entity/field-lovs.entity.js.map +0 -1
  716. package/dist/module/mapper/entity/field-mapper.entity.d.ts +0 -13
  717. package/dist/module/mapper/entity/field-mapper.entity.js +0 -78
  718. package/dist/module/mapper/entity/field-mapper.entity.js.map +0 -1
  719. package/dist/module/mapper/entity/mapper.entity.d.ts +0 -6
  720. package/dist/module/mapper/entity/mapper.entity.js +0 -34
  721. package/dist/module/mapper/entity/mapper.entity.js.map +0 -1
  722. package/dist/module/mapper/mapper.module.d.ts +0 -2
  723. package/dist/module/mapper/mapper.module.js +0 -47
  724. package/dist/module/mapper/mapper.module.js.map +0 -1
  725. package/dist/module/mapper/repository/field-lovs.repository.d.ts +0 -11
  726. package/dist/module/mapper/repository/field-lovs.repository.js +0 -52
  727. package/dist/module/mapper/repository/field-lovs.repository.js.map +0 -1
  728. package/dist/module/mapper/repository/field-mapper.repository.d.ts +0 -11
  729. package/dist/module/mapper/repository/field-mapper.repository.js +0 -54
  730. package/dist/module/mapper/repository/field-mapper.repository.js.map +0 -1
  731. package/dist/module/mapper/repository/mapper.repository.d.ts +0 -7
  732. package/dist/module/mapper/repository/mapper.repository.js +0 -34
  733. package/dist/module/mapper/repository/mapper.repository.js.map +0 -1
  734. package/dist/module/mapper/service/field-mapper.service.d.ts +0 -22
  735. package/dist/module/mapper/service/field-mapper.service.js +0 -177
  736. package/dist/module/mapper/service/field-mapper.service.js.map +0 -1
  737. package/dist/module/mapper/service/mapper.service.d.ts +0 -17
  738. package/dist/module/mapper/service/mapper.service.js +0 -72
  739. package/dist/module/mapper/service/mapper.service.js.map +0 -1
  740. package/dist/module/master/controller/master.controller.d.ts +0 -20
  741. package/dist/module/master/controller/master.controller.js +0 -82
  742. package/dist/module/master/controller/master.controller.js.map +0 -1
  743. package/dist/module/master/service/master.service.d.ts +0 -31
  744. package/dist/module/master/service/master.service.js +0 -364
  745. package/dist/module/master/service/master.service.js.map +0 -1
  746. package/dist/module/meta/controller/app-master.controller.d.ts +0 -9
  747. package/dist/module/meta/controller/app-master.controller.js +0 -51
  748. package/dist/module/meta/controller/app-master.controller.js.map +0 -1
  749. package/dist/module/meta/controller/attribute-master.controller.d.ts +0 -21
  750. package/dist/module/meta/controller/attribute-master.controller.js +0 -78
  751. package/dist/module/meta/controller/attribute-master.controller.js.map +0 -1
  752. package/dist/module/meta/controller/entity-dynamic.controller.d.ts +0 -21
  753. package/dist/module/meta/controller/entity-dynamic.controller.js +0 -115
  754. package/dist/module/meta/controller/entity-dynamic.controller.js.map +0 -1
  755. package/dist/module/meta/controller/entity-master.controller.d.ts +0 -8
  756. package/dist/module/meta/controller/entity-master.controller.js +0 -44
  757. package/dist/module/meta/controller/entity-master.controller.js.map +0 -1
  758. package/dist/module/meta/controller/entity-relation.controller.d.ts +0 -6
  759. package/dist/module/meta/controller/entity-relation.controller.js +0 -45
  760. package/dist/module/meta/controller/entity-relation.controller.js.map +0 -1
  761. package/dist/module/meta/controller/entity.controller.d.ts +0 -38
  762. package/dist/module/meta/controller/entity.controller.js +0 -245
  763. package/dist/module/meta/controller/entity.controller.js.map +0 -1
  764. package/dist/module/meta/controller/media.controller.d.ts +0 -17
  765. package/dist/module/meta/controller/media.controller.js +0 -80
  766. package/dist/module/meta/controller/media.controller.js.map +0 -1
  767. package/dist/module/meta/controller/meta.controller.d.ts +0 -32
  768. package/dist/module/meta/controller/meta.controller.js +0 -112
  769. package/dist/module/meta/controller/meta.controller.js.map +0 -1
  770. package/dist/module/meta/controller/view-master.controller.d.ts +0 -12
  771. package/dist/module/meta/controller/view-master.controller.js +0 -88
  772. package/dist/module/meta/controller/view-master.controller.js.map +0 -1
  773. package/dist/module/meta/dto/entity-list-data.dto.d.ts +0 -5
  774. package/dist/module/meta/dto/entity-list-data.dto.js +0 -7
  775. package/dist/module/meta/dto/entity-list-data.dto.js.map +0 -1
  776. package/dist/module/meta/dto/entity-tab.dto.d.ts +0 -4
  777. package/dist/module/meta/dto/entity-tab.dto.js +0 -7
  778. package/dist/module/meta/dto/entity-tab.dto.js.map +0 -1
  779. package/dist/module/meta/dto/entity-table.dto.d.ts +0 -11
  780. package/dist/module/meta/dto/entity-table.dto.js +0 -8
  781. package/dist/module/meta/dto/entity-table.dto.js.map +0 -1
  782. package/dist/module/meta/entity/app-master.entity.d.ts +0 -12
  783. package/dist/module/meta/entity/app-master.entity.js +0 -58
  784. package/dist/module/meta/entity/app-master.entity.js.map +0 -1
  785. package/dist/module/meta/entity/attribute-master.entity.d.ts +0 -22
  786. package/dist/module/meta/entity/attribute-master.entity.js +0 -122
  787. package/dist/module/meta/entity/attribute-master.entity.js.map +0 -1
  788. package/dist/module/meta/entity/base-entity.entity.d.ts +0 -19
  789. package/dist/module/meta/entity/base-entity.entity.js +0 -104
  790. package/dist/module/meta/entity/base-entity.entity.js.map +0 -1
  791. package/dist/module/meta/entity/entity-master.entity.d.ts +0 -18
  792. package/dist/module/meta/entity/entity-master.entity.js +0 -108
  793. package/dist/module/meta/entity/entity-master.entity.js.map +0 -1
  794. package/dist/module/meta/entity/entity-relation-data.entity.d.ts +0 -10
  795. package/dist/module/meta/entity/entity-relation-data.entity.js +0 -51
  796. package/dist/module/meta/entity/entity-relation-data.entity.js.map +0 -1
  797. package/dist/module/meta/entity/entity-relation.entity.d.ts +0 -8
  798. package/dist/module/meta/entity/entity-relation.entity.js +0 -43
  799. package/dist/module/meta/entity/entity-relation.entity.js.map +0 -1
  800. package/dist/module/meta/entity/entity-table-column.entity.d.ts +0 -19
  801. package/dist/module/meta/entity/entity-table-column.entity.js +0 -92
  802. package/dist/module/meta/entity/entity-table-column.entity.js.map +0 -1
  803. package/dist/module/meta/entity/entity-table.entity.d.ts +0 -17
  804. package/dist/module/meta/entity/entity-table.entity.js +0 -79
  805. package/dist/module/meta/entity/entity-table.entity.js.map +0 -1
  806. package/dist/module/meta/entity/media-data.entity.d.ts +0 -11
  807. package/dist/module/meta/entity/media-data.entity.js +0 -55
  808. package/dist/module/meta/entity/media-data.entity.js.map +0 -1
  809. package/dist/module/meta/entity/preference.entity.d.ts +0 -11
  810. package/dist/module/meta/entity/preference.entity.js +0 -85
  811. package/dist/module/meta/entity/preference.entity.js.map +0 -1
  812. package/dist/module/meta/entity/view-master.entity.d.ts +0 -14
  813. package/dist/module/meta/entity/view-master.entity.js +0 -67
  814. package/dist/module/meta/entity/view-master.entity.js.map +0 -1
  815. package/dist/module/meta/entity.module.d.ts +0 -2
  816. package/dist/module/meta/entity.module.js +0 -153
  817. package/dist/module/meta/entity.module.js.map +0 -1
  818. package/dist/module/meta/repository/app-master.repository.d.ts +0 -7
  819. package/dist/module/meta/repository/app-master.repository.js +0 -36
  820. package/dist/module/meta/repository/app-master.repository.js.map +0 -1
  821. package/dist/module/meta/repository/attribute-master.repository.d.ts +0 -20
  822. package/dist/module/meta/repository/attribute-master.repository.js +0 -85
  823. package/dist/module/meta/repository/attribute-master.repository.js.map +0 -1
  824. package/dist/module/meta/repository/entity-master.repository.d.ts +0 -20
  825. package/dist/module/meta/repository/entity-master.repository.js +0 -73
  826. package/dist/module/meta/repository/entity-master.repository.js.map +0 -1
  827. package/dist/module/meta/repository/entity-table-column.repository.d.ts +0 -7
  828. package/dist/module/meta/repository/entity-table-column.repository.js +0 -52
  829. package/dist/module/meta/repository/entity-table-column.repository.js.map +0 -1
  830. package/dist/module/meta/repository/entity-table.repository.d.ts +0 -9
  831. package/dist/module/meta/repository/entity-table.repository.js +0 -59
  832. package/dist/module/meta/repository/entity-table.repository.js.map +0 -1
  833. package/dist/module/meta/repository/media-data.repository.d.ts +0 -9
  834. package/dist/module/meta/repository/media-data.repository.js +0 -55
  835. package/dist/module/meta/repository/media-data.repository.js.map +0 -1
  836. package/dist/module/meta/repository/preference.repository.d.ts +0 -7
  837. package/dist/module/meta/repository/preference.repository.js +0 -36
  838. package/dist/module/meta/repository/preference.repository.js.map +0 -1
  839. package/dist/module/meta/repository/user-app-mapping.repository.d.ts +0 -0
  840. package/dist/module/meta/repository/user-app-mapping.repository.js +0 -1
  841. package/dist/module/meta/repository/user-app-mapping.repository.js.map +0 -1
  842. package/dist/module/meta/repository/view-master.repository.d.ts +0 -11
  843. package/dist/module/meta/repository/view-master.repository.js +0 -52
  844. package/dist/module/meta/repository/view-master.repository.js.map +0 -1
  845. package/dist/module/meta/service/app-master.service.d.ts +0 -8
  846. package/dist/module/meta/service/app-master.service.js +0 -45
  847. package/dist/module/meta/service/app-master.service.js.map +0 -1
  848. package/dist/module/meta/service/attribute-master.service.d.ts +0 -16
  849. package/dist/module/meta/service/attribute-master.service.js +0 -75
  850. package/dist/module/meta/service/attribute-master.service.js.map +0 -1
  851. package/dist/module/meta/service/common.service.d.ts +0 -4
  852. package/dist/module/meta/service/common.service.js +0 -25
  853. package/dist/module/meta/service/common.service.js.map +0 -1
  854. package/dist/module/meta/service/entity-dynamic.service.d.ts +0 -23
  855. package/dist/module/meta/service/entity-dynamic.service.js +0 -452
  856. package/dist/module/meta/service/entity-dynamic.service.js.map +0 -1
  857. package/dist/module/meta/service/entity-list.service.d.ts +0 -17
  858. package/dist/module/meta/service/entity-list.service.js +0 -141
  859. package/dist/module/meta/service/entity-list.service.js.map +0 -1
  860. package/dist/module/meta/service/entity-master.service.d.ts +0 -29
  861. package/dist/module/meta/service/entity-master.service.js +0 -112
  862. package/dist/module/meta/service/entity-master.service.js.map +0 -1
  863. package/dist/module/meta/service/entity-realation-data.service.d.ts +0 -4
  864. package/dist/module/meta/service/entity-realation-data.service.js +0 -25
  865. package/dist/module/meta/service/entity-realation-data.service.js.map +0 -1
  866. package/dist/module/meta/service/entity-relation.service.d.ts +0 -8
  867. package/dist/module/meta/service/entity-relation.service.js +0 -58
  868. package/dist/module/meta/service/entity-relation.service.js.map +0 -1
  869. package/dist/module/meta/service/entity-service-impl.service.d.ts +0 -43
  870. package/dist/module/meta/service/entity-service-impl.service.js +0 -278
  871. package/dist/module/meta/service/entity-service-impl.service.js.map +0 -1
  872. package/dist/module/meta/service/entity-table-column.service.d.ts +0 -7
  873. package/dist/module/meta/service/entity-table-column.service.js +0 -37
  874. package/dist/module/meta/service/entity-table-column.service.js.map +0 -1
  875. package/dist/module/meta/service/entity-table.service.d.ts +0 -17
  876. package/dist/module/meta/service/entity-table.service.js +0 -84
  877. package/dist/module/meta/service/entity-table.service.js.map +0 -1
  878. package/dist/module/meta/service/entity-validation.service.d.ts +0 -21
  879. package/dist/module/meta/service/entity-validation.service.js +0 -117
  880. package/dist/module/meta/service/entity-validation.service.js.map +0 -1
  881. package/dist/module/meta/service/entity.service.d.ts +0 -15
  882. package/dist/module/meta/service/entity.service.js +0 -3
  883. package/dist/module/meta/service/entity.service.js.map +0 -1
  884. package/dist/module/meta/service/field-group.service.d.ts +0 -26
  885. package/dist/module/meta/service/field-group.service.js +0 -76
  886. package/dist/module/meta/service/field-group.service.js.map +0 -1
  887. package/dist/module/meta/service/media-data.service.d.ts +0 -30
  888. package/dist/module/meta/service/media-data.service.js +0 -116
  889. package/dist/module/meta/service/media-data.service.js.map +0 -1
  890. package/dist/module/meta/service/populate-meta.service.d.ts +0 -11
  891. package/dist/module/meta/service/populate-meta.service.js +0 -124
  892. package/dist/module/meta/service/populate-meta.service.js.map +0 -1
  893. package/dist/module/meta/service/preference.service.d.ts +0 -7
  894. package/dist/module/meta/service/preference.service.js +0 -31
  895. package/dist/module/meta/service/preference.service.js.map +0 -1
  896. package/dist/module/meta/service/resolver.service.d.ts +0 -11
  897. package/dist/module/meta/service/resolver.service.js +0 -162
  898. package/dist/module/meta/service/resolver.service.js.map +0 -1
  899. package/dist/module/meta/service/section-master.service.d.ts +0 -26
  900. package/dist/module/meta/service/section-master.service.js +0 -77
  901. package/dist/module/meta/service/section-master.service.js.map +0 -1
  902. package/dist/module/meta/service/update-form-json.service.d.ts +0 -9
  903. package/dist/module/meta/service/update-form-json.service.js +0 -39
  904. package/dist/module/meta/service/update-form-json.service.js.map +0 -1
  905. package/dist/module/meta/service/user-app-mapping.service.d.ts +0 -0
  906. package/dist/module/meta/service/user-app-mapping.service.js +0 -1
  907. package/dist/module/meta/service/user-app-mapping.service.js.map +0 -1
  908. package/dist/module/meta/service/view-master.service.d.ts +0 -27
  909. package/dist/module/meta/service/view-master.service.js +0 -69
  910. package/dist/module/meta/service/view-master.service.js.map +0 -1
  911. package/dist/module/module/controller/menu.controller.d.ts +0 -8
  912. package/dist/module/module/controller/menu.controller.js +0 -41
  913. package/dist/module/module/controller/menu.controller.js.map +0 -1
  914. package/dist/module/module/controller/module-access.controller.d.ts +0 -35
  915. package/dist/module/module/controller/module-access.controller.js +0 -148
  916. package/dist/module/module/controller/module-access.controller.js.map +0 -1
  917. package/dist/module/module/entity/menu.entity.d.ts +0 -15
  918. package/dist/module/module/entity/menu.entity.js +0 -72
  919. package/dist/module/module/entity/menu.entity.js.map +0 -1
  920. package/dist/module/module/entity/module-access.entity.d.ts +0 -9
  921. package/dist/module/module/entity/module-access.entity.js +0 -48
  922. package/dist/module/module/entity/module-access.entity.js.map +0 -1
  923. package/dist/module/module/entity/module-action.entity.d.ts +0 -6
  924. package/dist/module/module/entity/module-action.entity.js +0 -37
  925. package/dist/module/module/entity/module-action.entity.js.map +0 -1
  926. package/dist/module/module/entity/module.entity.d.ts +0 -18
  927. package/dist/module/module/entity/module.entity.js +0 -84
  928. package/dist/module/module/entity/module.entity.js.map +0 -1
  929. package/dist/module/module/module.module.d.ts +0 -2
  930. package/dist/module/module/module.module.js +0 -55
  931. package/dist/module/module/module.module.js.map +0 -1
  932. package/dist/module/module/repository/menu.repository.d.ts +0 -11
  933. package/dist/module/module/repository/menu.repository.js +0 -152
  934. package/dist/module/module/repository/menu.repository.js.map +0 -1
  935. package/dist/module/module/repository/module-access.repository.d.ts +0 -51
  936. package/dist/module/module/repository/module-access.repository.js +0 -275
  937. package/dist/module/module/repository/module-access.repository.js.map +0 -1
  938. package/dist/module/module/service/menu.service.d.ts +0 -12
  939. package/dist/module/module/service/menu.service.js +0 -59
  940. package/dist/module/module/service/menu.service.js.map +0 -1
  941. package/dist/module/module/service/module-access.service.d.ts +0 -60
  942. package/dist/module/module/service/module-access.service.js +0 -119
  943. package/dist/module/module/service/module-access.service.js.map +0 -1
  944. package/dist/module/notification/controller/notification.controller.d.ts +0 -23
  945. package/dist/module/notification/controller/notification.controller.js +0 -74
  946. package/dist/module/notification/controller/notification.controller.js.map +0 -1
  947. package/dist/module/notification/controller/otp.controller.d.ts +0 -56
  948. package/dist/module/notification/controller/otp.controller.js +0 -103
  949. package/dist/module/notification/controller/otp.controller.js.map +0 -1
  950. package/dist/module/notification/entity/notification.entity.d.ts +0 -10
  951. package/dist/module/notification/entity/notification.entity.js +0 -49
  952. package/dist/module/notification/entity/notification.entity.js.map +0 -1
  953. package/dist/module/notification/entity/otp.entity.d.ts +0 -10
  954. package/dist/module/notification/entity/otp.entity.js +0 -52
  955. package/dist/module/notification/entity/otp.entity.js.map +0 -1
  956. package/dist/module/notification/firebase-admin.config.d.ts +0 -7
  957. package/dist/module/notification/firebase-admin.config.js +0 -24
  958. package/dist/module/notification/firebase-admin.config.js.map +0 -1
  959. package/dist/module/notification/notification.module.d.ts +0 -2
  960. package/dist/module/notification/notification.module.js +0 -82
  961. package/dist/module/notification/notification.module.js.map +0 -1
  962. package/dist/module/notification/repository/otp.repository.d.ts +0 -9
  963. package/dist/module/notification/repository/otp.repository.js +0 -44
  964. package/dist/module/notification/repository/otp.repository.js.map +0 -1
  965. package/dist/module/notification/service/email.service.d.ts +0 -14
  966. package/dist/module/notification/service/email.service.js +0 -110
  967. package/dist/module/notification/service/email.service.js.map +0 -1
  968. package/dist/module/notification/service/notification.service.d.ts +0 -25
  969. package/dist/module/notification/service/notification.service.js +0 -117
  970. package/dist/module/notification/service/notification.service.js.map +0 -1
  971. package/dist/module/notification/service/otp.service.d.ts +0 -52
  972. package/dist/module/notification/service/otp.service.js +0 -105
  973. package/dist/module/notification/service/otp.service.js.map +0 -1
  974. package/dist/module/third-party-module/entity/third-party-api-registry.entity.d.ts +0 -18
  975. package/dist/module/third-party-module/entity/third-party-api-registry.entity.js +0 -84
  976. package/dist/module/third-party-module/entity/third-party-api-registry.entity.js.map +0 -1
  977. package/dist/module/third-party-module/repository/third-party-api-registry.repository.d.ts +0 -7
  978. package/dist/module/third-party-module/repository/third-party-api-registry.repository.js +0 -38
  979. package/dist/module/third-party-module/repository/third-party-api-registry.repository.js.map +0 -1
  980. package/dist/module/third-party-module/service/api-registry.service.d.ts +0 -6
  981. package/dist/module/third-party-module/service/api-registry.service.js +0 -28
  982. package/dist/module/third-party-module/service/api-registry.service.js.map +0 -1
  983. package/dist/module/third-party-module/third-party.module.d.ts +0 -2
  984. package/dist/module/third-party-module/third-party.module.js +0 -25
  985. package/dist/module/third-party-module/third-party.module.js.map +0 -1
  986. package/dist/module/user/controller/login.controller.d.ts +0 -26
  987. package/dist/module/user/controller/login.controller.js +0 -176
  988. package/dist/module/user/controller/login.controller.js.map +0 -1
  989. package/dist/module/user/controller/user.controller.d.ts +0 -9
  990. package/dist/module/user/controller/user.controller.js +0 -59
  991. package/dist/module/user/controller/user.controller.js.map +0 -1
  992. package/dist/module/user/dto/create-user.dto.d.ts +0 -17
  993. package/dist/module/user/dto/create-user.dto.js +0 -64
  994. package/dist/module/user/dto/create-user.dto.js.map +0 -1
  995. package/dist/module/user/dto/update-user.dto.d.ts +0 -5
  996. package/dist/module/user/dto/update-user.dto.js +0 -9
  997. package/dist/module/user/dto/update-user.dto.js.map +0 -1
  998. package/dist/module/user/entity/role.entity.d.ts +0 -11
  999. package/dist/module/user/entity/role.entity.js +0 -56
  1000. package/dist/module/user/entity/role.entity.js.map +0 -1
  1001. package/dist/module/user/entity/user-role-mapping.entity.d.ts +0 -12
  1002. package/dist/module/user/entity/user-role-mapping.entity.js +0 -63
  1003. package/dist/module/user/entity/user-role-mapping.entity.js.map +0 -1
  1004. package/dist/module/user/entity/user-session.entity.d.ts +0 -11
  1005. package/dist/module/user/entity/user-session.entity.js +0 -86
  1006. package/dist/module/user/entity/user-session.entity.js.map +0 -1
  1007. package/dist/module/user/entity/user.entity.d.ts +0 -23
  1008. package/dist/module/user/entity/user.entity.js +0 -103
  1009. package/dist/module/user/entity/user.entity.js.map +0 -1
  1010. package/dist/module/user/repository/role.repository.d.ts +0 -18
  1011. package/dist/module/user/repository/role.repository.js +0 -87
  1012. package/dist/module/user/repository/role.repository.js.map +0 -1
  1013. package/dist/module/user/repository/user-role-mapping.repository.d.ts +0 -19
  1014. package/dist/module/user/repository/user-role-mapping.repository.js +0 -110
  1015. package/dist/module/user/repository/user-role-mapping.repository.js.map +0 -1
  1016. package/dist/module/user/repository/user.repository.d.ts +0 -10
  1017. package/dist/module/user/repository/user.repository.js +0 -58
  1018. package/dist/module/user/repository/user.repository.js.map +0 -1
  1019. package/dist/module/user/repository/userSession.repository.d.ts +0 -10
  1020. package/dist/module/user/repository/userSession.repository.js +0 -45
  1021. package/dist/module/user/repository/userSession.repository.js.map +0 -1
  1022. package/dist/module/user/service/login.service.d.ts +0 -80
  1023. package/dist/module/user/service/login.service.js +0 -208
  1024. package/dist/module/user/service/login.service.js.map +0 -1
  1025. package/dist/module/user/service/role.service.d.ts +0 -23
  1026. package/dist/module/user/service/role.service.js +0 -146
  1027. package/dist/module/user/service/role.service.js.map +0 -1
  1028. package/dist/module/user/service/user-role-mapping.service.d.ts +0 -12
  1029. package/dist/module/user/service/user-role-mapping.service.js +0 -60
  1030. package/dist/module/user/service/user-role-mapping.service.js.map +0 -1
  1031. package/dist/module/user/service/user-session.service.d.ts +0 -38
  1032. package/dist/module/user/service/user-session.service.js +0 -132
  1033. package/dist/module/user/service/user-session.service.js.map +0 -1
  1034. package/dist/module/user/service/user.service.d.ts +0 -38
  1035. package/dist/module/user/service/user.service.js +0 -234
  1036. package/dist/module/user/service/user.service.js.map +0 -1
  1037. package/dist/module/user/user.module.d.ts +0 -2
  1038. package/dist/module/user/user.module.js +0 -78
  1039. package/dist/module/user/user.module.js.map +0 -1
  1040. package/dist/module/workflow/controller/action-category.controller.d.ts +0 -18
  1041. package/dist/module/workflow/controller/action-category.controller.js +0 -79
  1042. package/dist/module/workflow/controller/action-category.controller.js.map +0 -1
  1043. package/dist/module/workflow/controller/action-resource-mapping.controller.d.ts +0 -5
  1044. package/dist/module/workflow/controller/action-resource-mapping.controller.js +0 -31
  1045. package/dist/module/workflow/controller/action-resource-mapping.controller.js.map +0 -1
  1046. package/dist/module/workflow/controller/action-template-mapping.controller.d.ts +0 -12
  1047. package/dist/module/workflow/controller/action-template-mapping.controller.js +0 -44
  1048. package/dist/module/workflow/controller/action-template-mapping.controller.js.map +0 -1
  1049. package/dist/module/workflow/controller/action.controller.d.ts +0 -45
  1050. package/dist/module/workflow/controller/action.controller.js +0 -108
  1051. package/dist/module/workflow/controller/action.controller.js.map +0 -1
  1052. package/dist/module/workflow/controller/activity-log.controller.d.ts +0 -44
  1053. package/dist/module/workflow/controller/activity-log.controller.js +0 -62
  1054. package/dist/module/workflow/controller/activity-log.controller.js.map +0 -1
  1055. package/dist/module/workflow/controller/comm-template.controller.d.ts +0 -13
  1056. package/dist/module/workflow/controller/comm-template.controller.js +0 -45
  1057. package/dist/module/workflow/controller/comm-template.controller.js.map +0 -1
  1058. package/dist/module/workflow/controller/entity-modification.controller.d.ts +0 -8
  1059. package/dist/module/workflow/controller/entity-modification.controller.js +0 -44
  1060. package/dist/module/workflow/controller/entity-modification.controller.js.map +0 -1
  1061. package/dist/module/workflow/controller/form-master.controller.d.ts +0 -11
  1062. package/dist/module/workflow/controller/form-master.controller.js +0 -59
  1063. package/dist/module/workflow/controller/form-master.controller.js.map +0 -1
  1064. package/dist/module/workflow/controller/stage-group.controller.d.ts +0 -19
  1065. package/dist/module/workflow/controller/stage-group.controller.js +0 -56
  1066. package/dist/module/workflow/controller/stage-group.controller.js.map +0 -1
  1067. package/dist/module/workflow/controller/stage.controller.d.ts +0 -16
  1068. package/dist/module/workflow/controller/stage.controller.js +0 -57
  1069. package/dist/module/workflow/controller/stage.controller.js.map +0 -1
  1070. package/dist/module/workflow/controller/task.controller.d.ts +0 -32
  1071. package/dist/module/workflow/controller/task.controller.js +0 -72
  1072. package/dist/module/workflow/controller/task.controller.js.map +0 -1
  1073. package/dist/module/workflow/controller/workflow-list-master.controller.d.ts +0 -14
  1074. package/dist/module/workflow/controller/workflow-list-master.controller.js +0 -67
  1075. package/dist/module/workflow/controller/workflow-list-master.controller.js.map +0 -1
  1076. package/dist/module/workflow/controller/workflow-meta.controller.d.ts +0 -15
  1077. package/dist/module/workflow/controller/workflow-meta.controller.js +0 -72
  1078. package/dist/module/workflow/controller/workflow-meta.controller.js.map +0 -1
  1079. package/dist/module/workflow/controller/workflow.controller.d.ts +0 -31
  1080. package/dist/module/workflow/controller/workflow.controller.js +0 -83
  1081. package/dist/module/workflow/controller/workflow.controller.js.map +0 -1
  1082. package/dist/module/workflow/entity/action-category.entity.d.ts +0 -13
  1083. package/dist/module/workflow/entity/action-category.entity.js +0 -63
  1084. package/dist/module/workflow/entity/action-category.entity.js.map +0 -1
  1085. package/dist/module/workflow/entity/action-data.entity.d.ts +0 -19
  1086. package/dist/module/workflow/entity/action-data.entity.js +0 -86
  1087. package/dist/module/workflow/entity/action-data.entity.js.map +0 -1
  1088. package/dist/module/workflow/entity/action-resources-mapping.entity.d.ts +0 -9
  1089. package/dist/module/workflow/entity/action-resources-mapping.entity.js +0 -47
  1090. package/dist/module/workflow/entity/action-resources-mapping.entity.js.map +0 -1
  1091. package/dist/module/workflow/entity/action-template-mapping.entity.d.ts +0 -6
  1092. package/dist/module/workflow/entity/action-template-mapping.entity.js +0 -35
  1093. package/dist/module/workflow/entity/action-template-mapping.entity.js.map +0 -1
  1094. package/dist/module/workflow/entity/action.entity.d.ts +0 -17
  1095. package/dist/module/workflow/entity/action.entity.js +0 -79
  1096. package/dist/module/workflow/entity/action.entity.js.map +0 -1
  1097. package/dist/module/workflow/entity/activity-log.entity.d.ts +0 -15
  1098. package/dist/module/workflow/entity/activity-log.entity.js +0 -70
  1099. package/dist/module/workflow/entity/activity-log.entity.js.map +0 -1
  1100. package/dist/module/workflow/entity/comm-template.entity.d.ts +0 -14
  1101. package/dist/module/workflow/entity/comm-template.entity.js +0 -67
  1102. package/dist/module/workflow/entity/comm-template.entity.js.map +0 -1
  1103. package/dist/module/workflow/entity/entity-modification.entity.d.ts +0 -13
  1104. package/dist/module/workflow/entity/entity-modification.entity.js +0 -63
  1105. package/dist/module/workflow/entity/entity-modification.entity.js.map +0 -1
  1106. package/dist/module/workflow/entity/form.entity.d.ts +0 -9
  1107. package/dist/module/workflow/entity/form.entity.js +0 -46
  1108. package/dist/module/workflow/entity/form.entity.js.map +0 -1
  1109. package/dist/module/workflow/entity/stage-action-mapping.entity.d.ts +0 -6
  1110. package/dist/module/workflow/entity/stage-action-mapping.entity.js +0 -35
  1111. package/dist/module/workflow/entity/stage-action-mapping.entity.js.map +0 -1
  1112. package/dist/module/workflow/entity/stage-group.entity.d.ts +0 -8
  1113. package/dist/module/workflow/entity/stage-group.entity.js +0 -43
  1114. package/dist/module/workflow/entity/stage-group.entity.js.map +0 -1
  1115. package/dist/module/workflow/entity/stage-movement-data.entity.d.ts +0 -13
  1116. package/dist/module/workflow/entity/stage-movement-data.entity.js +0 -63
  1117. package/dist/module/workflow/entity/stage-movement-data.entity.js.map +0 -1
  1118. package/dist/module/workflow/entity/stage.entity.d.ts +0 -7
  1119. package/dist/module/workflow/entity/stage.entity.js +0 -39
  1120. package/dist/module/workflow/entity/stage.entity.js.map +0 -1
  1121. package/dist/module/workflow/entity/task-data.entity.d.ts +0 -30
  1122. package/dist/module/workflow/entity/task-data.entity.js +0 -130
  1123. package/dist/module/workflow/entity/task-data.entity.js.map +0 -1
  1124. package/dist/module/workflow/entity/template-attach-mapper.entity.d.ts +0 -11
  1125. package/dist/module/workflow/entity/template-attach-mapper.entity.js +0 -54
  1126. package/dist/module/workflow/entity/template-attach-mapper.entity.js.map +0 -1
  1127. package/dist/module/workflow/entity/workflow-data.entity.d.ts +0 -4
  1128. package/dist/module/workflow/entity/workflow-data.entity.js +0 -27
  1129. package/dist/module/workflow/entity/workflow-data.entity.js.map +0 -1
  1130. package/dist/module/workflow/entity/workflow-level-mapping.entity.d.ts +0 -7
  1131. package/dist/module/workflow/entity/workflow-level-mapping.entity.js +0 -38
  1132. package/dist/module/workflow/entity/workflow-level-mapping.entity.js.map +0 -1
  1133. package/dist/module/workflow/entity/workflow.entity.d.ts +0 -7
  1134. package/dist/module/workflow/entity/workflow.entity.js +0 -39
  1135. package/dist/module/workflow/entity/workflow.entity.js.map +0 -1
  1136. package/dist/module/workflow/repository/action-category.repository.d.ts +0 -19
  1137. package/dist/module/workflow/repository/action-category.repository.js +0 -84
  1138. package/dist/module/workflow/repository/action-category.repository.js.map +0 -1
  1139. package/dist/module/workflow/repository/action-data.repository.d.ts +0 -18
  1140. package/dist/module/workflow/repository/action-data.repository.js +0 -172
  1141. package/dist/module/workflow/repository/action-data.repository.js.map +0 -1
  1142. package/dist/module/workflow/repository/action.repository.d.ts +0 -29
  1143. package/dist/module/workflow/repository/action.repository.js +0 -220
  1144. package/dist/module/workflow/repository/action.repository.js.map +0 -1
  1145. package/dist/module/workflow/repository/activity-log.repository.d.ts +0 -57
  1146. package/dist/module/workflow/repository/activity-log.repository.js +0 -112
  1147. package/dist/module/workflow/repository/activity-log.repository.js.map +0 -1
  1148. package/dist/module/workflow/repository/comm-template.repository.d.ts +0 -15
  1149. package/dist/module/workflow/repository/comm-template.repository.js +0 -109
  1150. package/dist/module/workflow/repository/comm-template.repository.js.map +0 -1
  1151. package/dist/module/workflow/repository/form-master.repository.d.ts +0 -8
  1152. package/dist/module/workflow/repository/form-master.repository.js +0 -38
  1153. package/dist/module/workflow/repository/form-master.repository.js.map +0 -1
  1154. package/dist/module/workflow/repository/form.repository.d.ts +0 -0
  1155. package/dist/module/workflow/repository/form.repository.js +0 -1
  1156. package/dist/module/workflow/repository/form.repository.js.map +0 -1
  1157. package/dist/module/workflow/repository/stage-group.repository.d.ts +0 -34
  1158. package/dist/module/workflow/repository/stage-group.repository.js +0 -135
  1159. package/dist/module/workflow/repository/stage-group.repository.js.map +0 -1
  1160. package/dist/module/workflow/repository/stage-movement.repository.d.ts +0 -23
  1161. package/dist/module/workflow/repository/stage-movement.repository.js +0 -150
  1162. package/dist/module/workflow/repository/stage-movement.repository.js.map +0 -1
  1163. package/dist/module/workflow/repository/stage.repository.d.ts +0 -31
  1164. package/dist/module/workflow/repository/stage.repository.js +0 -117
  1165. package/dist/module/workflow/repository/stage.repository.js.map +0 -1
  1166. package/dist/module/workflow/repository/task.repository.d.ts +0 -10
  1167. package/dist/module/workflow/repository/task.repository.js +0 -96
  1168. package/dist/module/workflow/repository/task.repository.js.map +0 -1
  1169. package/dist/module/workflow/repository/workflow.repository.d.ts +0 -10
  1170. package/dist/module/workflow/repository/workflow.repository.js +0 -49
  1171. package/dist/module/workflow/repository/workflow.repository.js.map +0 -1
  1172. package/dist/module/workflow/service/action-category.service.d.ts +0 -21
  1173. package/dist/module/workflow/service/action-category.service.js +0 -42
  1174. package/dist/module/workflow/service/action-category.service.js.map +0 -1
  1175. package/dist/module/workflow/service/action-data.service.d.ts +0 -16
  1176. package/dist/module/workflow/service/action-data.service.js +0 -40
  1177. package/dist/module/workflow/service/action-data.service.js.map +0 -1
  1178. package/dist/module/workflow/service/action-resources-mapping.service.d.ts +0 -6
  1179. package/dist/module/workflow/service/action-resources-mapping.service.js +0 -27
  1180. package/dist/module/workflow/service/action-resources-mapping.service.js.map +0 -1
  1181. package/dist/module/workflow/service/action-template-mapping.service.d.ts +0 -7
  1182. package/dist/module/workflow/service/action-template-mapping.service.js +0 -52
  1183. package/dist/module/workflow/service/action-template-mapping.service.js.map +0 -1
  1184. package/dist/module/workflow/service/action.service.d.ts +0 -35
  1185. package/dist/module/workflow/service/action.service.js +0 -163
  1186. package/dist/module/workflow/service/action.service.js.map +0 -1
  1187. package/dist/module/workflow/service/activity-log.service.d.ts +0 -44
  1188. package/dist/module/workflow/service/activity-log.service.js +0 -92
  1189. package/dist/module/workflow/service/activity-log.service.js.map +0 -1
  1190. package/dist/module/workflow/service/comm-template.service.d.ts +0 -16
  1191. package/dist/module/workflow/service/comm-template.service.js +0 -90
  1192. package/dist/module/workflow/service/comm-template.service.js.map +0 -1
  1193. package/dist/module/workflow/service/entity-modification.service.d.ts +0 -8
  1194. package/dist/module/workflow/service/entity-modification.service.js +0 -52
  1195. package/dist/module/workflow/service/entity-modification.service.js.map +0 -1
  1196. package/dist/module/workflow/service/form-master.service.d.ts +0 -14
  1197. package/dist/module/workflow/service/form-master.service.js +0 -38
  1198. package/dist/module/workflow/service/form-master.service.js.map +0 -1
  1199. package/dist/module/workflow/service/populate-workflow.service.d.ts +0 -21
  1200. package/dist/module/workflow/service/populate-workflow.service.js +0 -167
  1201. package/dist/module/workflow/service/populate-workflow.service.js.map +0 -1
  1202. package/dist/module/workflow/service/stage-action-mapping.service.d.ts +0 -3
  1203. package/dist/module/workflow/service/stage-action-mapping.service.js +0 -18
  1204. package/dist/module/workflow/service/stage-action-mapping.service.js.map +0 -1
  1205. package/dist/module/workflow/service/stage-group.service.d.ts +0 -29
  1206. package/dist/module/workflow/service/stage-group.service.js +0 -213
  1207. package/dist/module/workflow/service/stage-group.service.js.map +0 -1
  1208. package/dist/module/workflow/service/stage.service.d.ts +0 -25
  1209. package/dist/module/workflow/service/stage.service.js +0 -129
  1210. package/dist/module/workflow/service/stage.service.js.map +0 -1
  1211. package/dist/module/workflow/service/task.service.d.ts +0 -47
  1212. package/dist/module/workflow/service/task.service.js +0 -324
  1213. package/dist/module/workflow/service/task.service.js.map +0 -1
  1214. package/dist/module/workflow/service/workflow-list-master.service.d.ts +0 -9
  1215. package/dist/module/workflow/service/workflow-list-master.service.js +0 -61
  1216. package/dist/module/workflow/service/workflow-list-master.service.js.map +0 -1
  1217. package/dist/module/workflow/service/workflow-meta.service.d.ts +0 -26
  1218. package/dist/module/workflow/service/workflow-meta.service.js +0 -356
  1219. package/dist/module/workflow/service/workflow-meta.service.js.map +0 -1
  1220. package/dist/module/workflow/service/workflow.service.d.ts +0 -33
  1221. package/dist/module/workflow/service/workflow.service.js +0 -140
  1222. package/dist/module/workflow/service/workflow.service.js.map +0 -1
  1223. package/dist/module/workflow/workflow.module.d.ts +0 -2
  1224. package/dist/module/workflow/workflow.module.js +0 -184
  1225. package/dist/module/workflow/workflow.module.js.map +0 -1
  1226. package/dist/module/workflow-automation/controller/workflow-automation.controller.d.ts +0 -5
  1227. package/dist/module/workflow-automation/controller/workflow-automation.controller.js +0 -31
  1228. package/dist/module/workflow-automation/controller/workflow-automation.controller.js.map +0 -1
  1229. package/dist/module/workflow-automation/entity/workflow-automation-action.entity.d.ts +0 -9
  1230. package/dist/module/workflow-automation/entity/workflow-automation-action.entity.js +0 -47
  1231. package/dist/module/workflow-automation/entity/workflow-automation-action.entity.js.map +0 -1
  1232. package/dist/module/workflow-automation/entity/workflow-automation.entity.d.ts +0 -12
  1233. package/dist/module/workflow-automation/entity/workflow-automation.entity.js +0 -59
  1234. package/dist/module/workflow-automation/entity/workflow-automation.entity.js.map +0 -1
  1235. package/dist/module/workflow-automation/interface/action.decorator.d.ts +0 -2
  1236. package/dist/module/workflow-automation/interface/action.decorator.js +0 -8
  1237. package/dist/module/workflow-automation/interface/action.decorator.js.map +0 -1
  1238. package/dist/module/workflow-automation/interface/action.interface.d.ts +0 -4
  1239. package/dist/module/workflow-automation/interface/action.interface.js +0 -3
  1240. package/dist/module/workflow-automation/interface/action.interface.js.map +0 -1
  1241. package/dist/module/workflow-automation/service/action-registery.service.d.ts +0 -11
  1242. package/dist/module/workflow-automation/service/action-registery.service.js +0 -46
  1243. package/dist/module/workflow-automation/service/action-registery.service.js.map +0 -1
  1244. package/dist/module/workflow-automation/service/workflow-automation-engine.service.d.ts +0 -14
  1245. package/dist/module/workflow-automation/service/workflow-automation-engine.service.js +0 -116
  1246. package/dist/module/workflow-automation/service/workflow-automation-engine.service.js.map +0 -1
  1247. package/dist/module/workflow-automation/service/workflow-automation.service.d.ts +0 -55
  1248. package/dist/module/workflow-automation/service/workflow-automation.service.js +0 -222
  1249. package/dist/module/workflow-automation/service/workflow-automation.service.js.map +0 -1
  1250. package/dist/module/workflow-automation/workflow-automation.module.d.ts +0 -2
  1251. package/dist/module/workflow-automation/workflow-automation.module.js +0 -47
  1252. package/dist/module/workflow-automation/workflow-automation.module.js.map +0 -1
  1253. package/dist/resources/properties.module.d.ts +0 -2
  1254. package/dist/resources/properties.module.js +0 -25
  1255. package/dist/resources/properties.module.js.map +0 -1
  1256. package/dist/resources/properties.yaml.d.ts +0 -2
  1257. package/dist/resources/properties.yaml.js +0 -10
  1258. package/dist/resources/properties.yaml.js.map +0 -1
  1259. package/dist/tsconfig.build.tsbuildinfo +0 -1
  1260. package/dist/utils/dto/excel-data.dto.d.ts +0 -7
  1261. package/dist/utils/dto/excel-data.dto.js +0 -16
  1262. package/dist/utils/dto/excel-data.dto.js.map +0 -1
  1263. package/dist/utils/dto/excelsheet-data.dto.d.ts +0 -5
  1264. package/dist/utils/dto/excelsheet-data.dto.js +0 -3
  1265. package/dist/utils/dto/excelsheet-data.dto.js.map +0 -1
  1266. package/dist/utils/service/base64util.service.d.ts +0 -4
  1267. package/dist/utils/service/base64util.service.js +0 -21
  1268. package/dist/utils/service/base64util.service.js.map +0 -1
  1269. package/dist/utils/service/clockIDGenUtil.service.d.ts +0 -8
  1270. package/dist/utils/service/clockIDGenUtil.service.js +0 -32
  1271. package/dist/utils/service/clockIDGenUtil.service.js.map +0 -1
  1272. package/dist/utils/service/codeGenerator.service.d.ts +0 -3
  1273. package/dist/utils/service/codeGenerator.service.js +0 -19
  1274. package/dist/utils/service/codeGenerator.service.js.map +0 -1
  1275. package/dist/utils/service/dateUtil.service.d.ts +0 -3
  1276. package/dist/utils/service/dateUtil.service.js +0 -28
  1277. package/dist/utils/service/dateUtil.service.js.map +0 -1
  1278. package/dist/utils/service/encryptUtil.service.d.ts +0 -9
  1279. package/dist/utils/service/encryptUtil.service.js +0 -112
  1280. package/dist/utils/service/encryptUtil.service.js.map +0 -1
  1281. package/dist/utils/service/excel-helper.service.d.ts +0 -9
  1282. package/dist/utils/service/excel-helper.service.js +0 -56
  1283. package/dist/utils/service/excel-helper.service.js.map +0 -1
  1284. package/dist/utils/service/excelUtil.service.d.ts +0 -3
  1285. package/dist/utils/service/excelUtil.service.js +0 -17
  1286. package/dist/utils/service/excelUtil.service.js.map +0 -1
  1287. package/dist/utils/service/file-util.service.d.ts +0 -3
  1288. package/dist/utils/service/file-util.service.js +0 -15
  1289. package/dist/utils/service/file-util.service.js.map +0 -1
  1290. package/dist/utils/service/json-util.service.d.ts +0 -3
  1291. package/dist/utils/service/json-util.service.js +0 -24
  1292. package/dist/utils/service/json-util.service.js.map +0 -1
  1293. package/dist/utils/service/loggingUtil.service.d.ts +0 -4
  1294. package/dist/utils/service/loggingUtil.service.js +0 -36
  1295. package/dist/utils/service/loggingUtil.service.js.map +0 -1
  1296. package/dist/utils/service/reflection-helper.service.d.ts +0 -10
  1297. package/dist/utils/service/reflection-helper.service.js +0 -66
  1298. package/dist/utils/service/reflection-helper.service.js.map +0 -1
  1299. package/dist/utils/service/wbsCodeGen.service.d.ts +0 -3
  1300. package/dist/utils/service/wbsCodeGen.service.js +0 -20
  1301. package/dist/utils/service/wbsCodeGen.service.js.map +0 -1
  1302. package/dist/utils/utils.module.d.ts +0 -2
  1303. package/dist/utils/utils.module.js +0 -38
  1304. package/dist/utils/utils.module.js.map +0 -1
@@ -1,612 +0,0 @@
1
- "use strict";
2
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
- return c > 3 && r && Object.defineProperty(target, key, r), r;
7
- };
8
- var __metadata = (this && this.__metadata) || function (k, v) {
9
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
- };
11
- var __param = (this && this.__param) || function (paramIndex, decorator) {
12
- return function (target, key) { decorator(target, key, paramIndex); }
13
- };
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- exports.FilterService = void 0;
16
- const common_1 = require("@nestjs/common");
17
- const attribute_master_service_1 = require("../../meta/service/attribute-master.service");
18
- const entity_master_service_1 = require("../../meta/service/entity-master.service");
19
- const typeorm_1 = require("typeorm");
20
- const saved_filter_service_1 = require("./saved-filter.service");
21
- const moment = require("moment");
22
- const entity_relation_service_1 = require("../../meta/service/entity-relation.service");
23
- const resolver_service_1 = require("../../meta/service/resolver.service");
24
- const loggingUtil_service_1 = require("../../../utils/service/loggingUtil.service");
25
- let FilterService = class FilterService {
26
- constructor(dataSource, attributeMasterService, entityMasterService, savedFilterService, entityRelationService, resolverService, loggingService) {
27
- this.dataSource = dataSource;
28
- this.attributeMasterService = attributeMasterService;
29
- this.entityMasterService = entityMasterService;
30
- this.savedFilterService = savedFilterService;
31
- this.entityRelationService = entityRelationService;
32
- this.resolverService = resolverService;
33
- this.loggingService = loggingService;
34
- this.skipAppCodeFilterEntities = ['ORGP'];
35
- this.skipOrgFilterEntities = ['ORGP'];
36
- }
37
- async gettab_value_counts(tableName, column, whereClauses) {
38
- if (!column)
39
- return [];
40
- let whereSQL = '';
41
- const values = [];
42
- if (whereClauses.length > 0) {
43
- const clauseParts = whereClauses.map((clause) => {
44
- let parsedQuery = clause.query.replace(/\be\./g, '');
45
- Object.entries(clause.params).forEach(([key, val]) => {
46
- parsedQuery = parsedQuery.replace(new RegExp(`:${key}`, 'g'), '?');
47
- values.push(val);
48
- });
49
- return parsedQuery;
50
- });
51
- whereSQL = `WHERE ${clauseParts.join(' AND ')}`;
52
- }
53
- const rawSQL = `
54
- SELECT ${column} AS tab_value, COUNT(*) AS tab_value_count
55
- FROM ${tableName}
56
- ${whereSQL}
57
- GROUP BY ${column}
58
- `;
59
- const rows = await this.dataSource.query(rawSQL, values);
60
- const total = rows.reduce((sum, r) => sum + parseInt(r.tab_value_count, 10), 0);
61
- return [
62
- { tab_value: 'All', tab_value_count: total },
63
- ...rows.map((r) => ({
64
- tab_value: r.tab_value ?? 'UNKNOWN',
65
- tab_value_count: parseInt(r.tab_value_count, 10),
66
- })),
67
- ];
68
- }
69
- async applyFilterWrapper(dto) {
70
- const { entity_type, quickFilter = [], savedFilterCode, attributeFilter = [], loggedInUser, } = dto;
71
- const savedFilters = await this.getSavedFilters(savedFilterCode ?? undefined);
72
- const allFilters = [...quickFilter, ...attributeFilter, ...savedFilters].filter((f) => f.filter_value !== '');
73
- const grouped = allFilters.reduce((acc, f) => {
74
- if (!acc[f.filter_entity_type])
75
- acc[f.filter_entity_type] = [];
76
- acc[f.filter_entity_type].push(f);
77
- return acc;
78
- }, {});
79
- console.log('🟠 [FilterService] Grouped filters by entity type:', grouped);
80
- let intersectionIds = null;
81
- for (const [subEntityType, filters] of Object.entries(grouped)) {
82
- if (subEntityType === entity_type)
83
- continue;
84
- let { queryParams, tabs, ...newDto } = dto;
85
- const subDto = {
86
- ...newDto,
87
- entity_type: subEntityType,
88
- quickFilter: filters,
89
- savedFilterCode: null,
90
- attributeFilter: [],
91
- };
92
- const subResult = await this.applyFilter(subDto);
93
- const subEntityIds = subResult.data.entity_list.map((row) => row.id);
94
- console.log(`🧩 [FilterService] Sub-entity ${subEntityType} returned IDs:`, subEntityIds);
95
- if (!subEntityIds.length) {
96
- console.log(`ℹ️ [FilterService] No records for sub-entity ${subEntityType}, returning empty result`);
97
- return {
98
- success: true,
99
- data: { entity_tabs: [], entity_list: [], pagination: {} },
100
- };
101
- }
102
- const relatedIds = await this.entityRelationService.getRelatedEntityIds(entity_type, subEntityType, subEntityIds, dto.loggedInUser.organization_id);
103
- intersectionIds =
104
- intersectionIds === null
105
- ? relatedIds
106
- : intersectionIds.filter((id) => relatedIds.includes(id));
107
- if (intersectionIds.length === 0) {
108
- console.log('🚫 [FilterService] No intersection IDs left, returning empty result');
109
- return {
110
- success: true,
111
- data: { entity_tabs: [], entity_list: [], pagination: {} },
112
- };
113
- }
114
- }
115
- const mainFilters = grouped[entity_type] || [];
116
- const mainDto = {
117
- ...dto,
118
- quickFilter: [...mainFilters],
119
- savedFilterCode: null,
120
- attributeFilter: [],
121
- };
122
- if (intersectionIds && intersectionIds.length > 0) {
123
- (mainDto.quickFilter ??= []).push({
124
- filter_attribute: 'id',
125
- filter_operator: 'equal',
126
- filter_value: intersectionIds,
127
- filter_entity_type: entity_type,
128
- });
129
- }
130
- return this.applyFilter(mainDto);
131
- }
132
- async applyFilter(dto) {
133
- const { entity_type, quickFilter, savedFilterCode, attributeFilter, tabs, sortby, loggedInUser, queryParams, customLevelType, customLevelId, customAppCode, } = dto;
134
- const { level_type, level_id, id: user_id, appcode, organization_id, } = loggedInUser || {};
135
- const entityMeta = await this.entityMasterService.getEntityData(entity_type, loggedInUser);
136
- const tableName = entityMeta?.data_source;
137
- if (!tableName) {
138
- console.error(`❌ [FilterService] Invalid entity_type: ${entity_type}`);
139
- throw new common_1.BadRequestException(`Invalid entity_type: ${entity_type}`);
140
- }
141
- const getAttributeColumnMeta = await this.attributeMasterService.findAttributesByMappedEntityType(entity_type, loggedInUser);
142
- const attributeMetaMap = getAttributeColumnMeta.reduce((acc, attr) => {
143
- acc[attr.attribute_key] = attr;
144
- return acc;
145
- }, {});
146
- const savedFilters = await this.getSavedFilters(savedFilterCode ?? undefined);
147
- const savedFiltersNormalized = savedFilters.map((f) => ({
148
- filter_attribute: f.filter_attribute,
149
- filter_operator: f.filter_operator,
150
- filter_value: f.filter_value,
151
- }));
152
- const baseFilters = [
153
- ...(quickFilter || []).filter((f) => f.filter_value != null && f.filter_value !== ''),
154
- ...savedFiltersNormalized.filter((f) => f.filter_value != null && f.filter_value !== ''),
155
- ...(attributeFilter || []).filter((f) => f.filter_value != null && f.filter_value !== ''),
156
- ];
157
- const baseWhere = this.buildWhereClauses(baseFilters, attributeMetaMap);
158
- if (entity_type != 'ORGP' &&
159
- level_type &&
160
- level_id &&
161
- organization_id &&
162
- !customLevelType &&
163
- !customLevelId) {
164
- baseWhere.push({
165
- query: 'e.organization_id = :organization_id AND e.level_type = :level_type AND e.level_id = :level_id',
166
- params: { organization_id, level_type, level_id },
167
- });
168
- }
169
- if (customLevelType && customLevelId && customAppCode) {
170
- baseWhere.push({
171
- query: 'e.organization_id = :organization_id AND e.level_type = :customLevelType AND e.level_id = :customLevelId AND e.appcode = :customAppCode',
172
- params: { organization_id, customLevelType, customLevelId, customAppCode },
173
- });
174
- }
175
- if (queryParams) {
176
- Object.entries(queryParams).forEach(([key, value]) => {
177
- if (!value)
178
- return;
179
- if (key === 'attributeName' && queryParams['attributeValue']) {
180
- const attrName = value;
181
- const attrValue = queryParams['attributeValue'];
182
- baseWhere.push({
183
- query: `e.${attrName} = :${attrName}`,
184
- params: { [attrName]: attrValue },
185
- });
186
- }
187
- else if (key !== 'attributeValue') {
188
- baseWhere.push({
189
- query: `e.${key} = :${key}`,
190
- params: { [key]: value },
191
- });
192
- }
193
- });
194
- }
195
- console.log('🟠 [FilterService] Constructed baseWhere clauses:', baseWhere);
196
- const layoutPreference = await this.dataSource.query(`SELECT mapped_json
197
- FROM cr_entity_layout_pref
198
- WHERE user_id = ? AND mapped_entity_type = ? AND mapped_level_id = ? AND mapped_level_type = ? AND type = 'layout'`, [user_id, entity_type, level_id, level_type]);
199
- const layout = layoutPreference?.[0]?.mapped_json?.quick_tab || {};
200
- const showList = layout?.show_list?.map((val) => val.toLowerCase()) || [];
201
- let allTabs;
202
- if (layout.attribute) {
203
- allTabs = await this.gettab_value_counts(entityMeta?.data_source, layout.attribute, baseWhere);
204
- }
205
- else {
206
- allTabs = await this.gettab_value_counts(entityMeta?.data_source, tabs?.columnName, baseWhere);
207
- }
208
- let filteredTabs;
209
- if (showList?.length > 0) {
210
- const isAllNeeded = layout?.isAllSelected && !showList.includes('all');
211
- if (isAllNeeded)
212
- showList.push('all');
213
- filteredTabs = allTabs.filter((tab) => showList.includes(tab.tab_value.toLowerCase()));
214
- const allTab = filteredTabs.find((tab) => tab.tab_value?.toLowerCase() === 'all');
215
- filteredTabs = filteredTabs.filter((tab) => tab.tab_value?.toLowerCase() !== 'all');
216
- if (layout.sorting === 'asc') {
217
- filteredTabs.sort((a, b) => a.tab_value.toLowerCase().localeCompare(b.tab_value.toLowerCase()));
218
- }
219
- else if (layout.sorting === 'dsc') {
220
- filteredTabs.sort((a, b) => b.tab_value.toLowerCase().localeCompare(a.tab_value.toLowerCase()));
221
- }
222
- else if (layout.sorting === 'count_asc') {
223
- filteredTabs.sort((a, b) => a.tab_value_count - b.tab_value_count);
224
- }
225
- else if (layout.sorting === 'count_dsc') {
226
- filteredTabs.sort((a, b) => b.tab_value_count - a.tab_value_count);
227
- }
228
- else if (layout.sorting === 'custom') {
229
- const orderMap = new Map(showList.map((val, index) => [val.toLowerCase(), index]));
230
- filteredTabs.sort((a, b) => {
231
- const aIndex = orderMap.get(a.tab_value.toLowerCase()) ?? Infinity;
232
- const bIndex = orderMap.get(b.tab_value.toLowerCase()) ?? Infinity;
233
- return aIndex - bIndex;
234
- });
235
- }
236
- if (allTab)
237
- filteredTabs.unshift(allTab);
238
- if (layout?.isCombineOther) {
239
- const originalAllTab = allTabs.find((tab) => tab.tab_value.toLowerCase() === 'all');
240
- const allCount = originalAllTab?.tab_value_count ?? 0;
241
- const knownTabCountSum = filteredTabs
242
- .filter((tab) => tab.tab_value.toLowerCase() !== 'all')
243
- .reduce((acc, tab) => acc + tab.tab_value_count, 0);
244
- const othersCount = allCount - knownTabCountSum;
245
- filteredTabs.push({
246
- tab_value: 'OTHERS',
247
- tab_value_count: othersCount < 0 ? 0 : othersCount,
248
- });
249
- }
250
- }
251
- else {
252
- filteredTabs = allTabs;
253
- }
254
- const dataWhere = [...baseWhere];
255
- if (tabs?.columnName && tabs?.value) {
256
- const tabAttrMeta = attributeMetaMap[tabs.columnName];
257
- const tabValue = tabs.value.toLowerCase();
258
- if (tabValue === 'others') {
259
- const valuesToExclude = showList.filter((v) => v !== 'all');
260
- if (valuesToExclude.length > 0) {
261
- for (const value of valuesToExclude) {
262
- const resolvedId = await this.resolverService.getResolvedId(loggedInUser, tabs.columnName, value, entity_type);
263
- if (resolvedId) {
264
- const tabCondition = this.buildCondition({
265
- filter_attribute: tabs.columnName,
266
- filter_operator: 'not_equal',
267
- filter_value: [resolvedId],
268
- skip_id: true,
269
- }, tabAttrMeta);
270
- if (tabCondition)
271
- dataWhere.push(tabCondition);
272
- }
273
- }
274
- }
275
- }
276
- else if (tabValue !== 'all') {
277
- const resolvedId = await this.resolverService.getResolvedId(loggedInUser, tabs.columnName, tabs.value, entity_type);
278
- if (resolvedId) {
279
- const tabCondition = this.buildCondition({
280
- filter_attribute: tabs.columnName,
281
- filter_operator: 'equal',
282
- filter_value: [resolvedId],
283
- skip_id: true,
284
- }, tabAttrMeta);
285
- if (tabCondition)
286
- dataWhere.push(tabCondition);
287
- }
288
- }
289
- }
290
- const qb = this.dataSource.createQueryBuilder().select('e.*').from(tableName, 'e');
291
- dataWhere.forEach((clause) => qb.andWhere(clause.query, clause.params));
292
- if (layoutPreference && layoutPreference[0]?.mapped_json?.sorting) {
293
- if (Array.isArray(layoutPreference[0]?.mapped_json?.sorting?.tabs)) {
294
- const preferenceTabArray = layoutPreference[0]?.mapped_json?.sorting?.tabs;
295
- const tabFilter = preferenceTabArray.find((tabData) => tabData.tab_name === tabs?.value);
296
- tabFilter?.sortby.forEach(({ column, order }) => {
297
- qb.addOrderBy(`e.${column}`, order?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC');
298
- });
299
- }
300
- else if (Array.isArray(layoutPreference[0]?.mapped_json?.sorting?.sortby)) {
301
- layoutPreference[0]?.mapped_json?.sorting?.sortby?.forEach(({ column, order }) => {
302
- qb.addOrderBy(`e.${column}`, order?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC');
303
- });
304
- }
305
- }
306
- qb.addOrderBy('e.created_date', 'DESC');
307
- const page = dto.page && dto.page > 0 ? dto.page : 1;
308
- const size = dto.size && dto.size > 0 ? dto.size : 10;
309
- qb.skip((page - 1) * size).take(size);
310
- const entity_list = await qb.getRawMany();
311
- console.log(`📦 [FilterService] Fetched ${entity_list.length} records`);
312
- const dateAttributes = Object.entries(attributeMetaMap)
313
- .filter(([_, attr]) => attr.data_type === 'date')
314
- .map(([key]) => key);
315
- const formatDate = (dateStr) => dateStr ? moment(dateStr).format('DD-MM-YYYY') : '';
316
- const formatDatesInRow = (row) => {
317
- const formattedRow = { ...row };
318
- for (const key of dateAttributes) {
319
- if (formattedRow[key])
320
- formattedRow[key] = formatDate(formattedRow[key]);
321
- }
322
- return formattedRow;
323
- };
324
- const formattedEntityList = entity_list.map(formatDatesInRow);
325
- const resolvedEntityList = await Promise.all(formattedEntityList.map((row) => this.resolverService.getResolvedData(loggedInUser, row, entity_type)));
326
- const resolvedTabs = await Promise.all(filteredTabs.map(async (tab) => {
327
- const tabAttrKey = layout?.attribute || tabs?.columnName;
328
- if (!tabAttrKey ||
329
- tab.tab_value?.toLowerCase() === 'all' ||
330
- tab.tab_value?.toLowerCase() === 'others') {
331
- return tab;
332
- }
333
- const resolvedVal = await this.resolverService.getResolvedValue(loggedInUser, tabAttrKey, tab.tab_value, entity_type);
334
- return { ...tab, tab_value: resolvedVal ?? tab.tab_value };
335
- }));
336
- const countQb = this.dataSource
337
- .createQueryBuilder()
338
- .select('COUNT(*)', 'count')
339
- .from(tableName, 'e');
340
- dataWhere.forEach((clause) => countQb.andWhere(clause.query, clause.params));
341
- const countResult = await countQb.getRawOne();
342
- const total = parseInt(countResult.count, 10);
343
- console.log('📊 [FilterService] Returning final result with total:', total);
344
- return {
345
- success: true,
346
- data: {
347
- entity_tabs: resolvedTabs,
348
- entity_list: resolvedEntityList,
349
- pagination: {
350
- total,
351
- page,
352
- size,
353
- totalPages: Math.ceil(total / size),
354
- hasNextPage: page * size < total,
355
- hasPreviousPage: page > 1,
356
- },
357
- },
358
- };
359
- }
360
- parseFilters(raw, isSingle = false) {
361
- if (!raw)
362
- return [];
363
- if (typeof raw === 'string') {
364
- try {
365
- const parsed = JSON.parse(raw);
366
- return isSingle ? [parsed] : parsed;
367
- }
368
- catch {
369
- throw new common_1.BadRequestException('Invalid JSON in filter input');
370
- }
371
- }
372
- return isSingle ? [raw] : Array.isArray(raw) ? raw : [];
373
- }
374
- async getSavedFilters(code) {
375
- if (!code)
376
- return [];
377
- const savedFilter = await this.savedFilterService.getDetailsByCode(code);
378
- if (!savedFilter) {
379
- throw new common_1.BadRequestException(`Saved filter not found for code: ${code}`);
380
- }
381
- return savedFilter;
382
- }
383
- buildWhereClauses(filters, attributeMeta) {
384
- return filters
385
- .map((f) => this.buildCondition(f, attributeMeta[f.filter_attribute]))
386
- .filter((clause) => clause !== null);
387
- }
388
- buildCondition(filter, meta) {
389
- if (!meta)
390
- return null;
391
- let attr = filter.filter_attribute;
392
- const val = filter.filter_value;
393
- const op = filter.filter_operator;
394
- const key = `param_${attr}_${Math.random().toString(36).substring(2, 8)}`;
395
- switch (meta.data_type) {
396
- case 'text':
397
- return this.buildTextCondition(attr, op, val, key);
398
- case 'number':
399
- return this.buildNumberCondition(attr, op, val, key);
400
- case 'date':
401
- return this.buildDateCondition(attr, op, val, key);
402
- case 'select':
403
- return this.buildMultiSelectCondition(attr, op, val, key);
404
- case 'multiselect':
405
- return this.buildMultiSelectCondition(attr, op, val, key);
406
- case 'checkbox':
407
- return this.buildMultiSelectCondition(attr, op, val, key);
408
- case 'radio':
409
- return this.buildMultiSelectCondition(attr, op, val, key);
410
- case 'year':
411
- return this.buildYearCondition(attr, op, val, key);
412
- default:
413
- return null;
414
- }
415
- }
416
- buildTextCondition(attr, op, val, key) {
417
- switch (op) {
418
- case 'contains':
419
- return {
420
- query: `LOWER(e.${attr}) LIKE :${key}`,
421
- params: { [key]: `%${val ? val.toLowerCase() : ''}%` },
422
- };
423
- case 'equal':
424
- return {
425
- query: `e.${attr} = :${key}`,
426
- params: { [key]: val },
427
- };
428
- case 'not_equal':
429
- return {
430
- query: `e.${attr} != :${key}`,
431
- params: { [key]: val },
432
- };
433
- case 'empty':
434
- return {
435
- query: `e.${attr} IS NULL`,
436
- params: {},
437
- };
438
- case 'not_empty':
439
- return {
440
- query: `e.${attr} IS NOT NULL`,
441
- params: {},
442
- };
443
- default:
444
- throw new common_1.BadRequestException(`Unsupported operator for text: ${op}`);
445
- }
446
- }
447
- buildNumberCondition(attr, op, val, key) {
448
- switch (op) {
449
- case 'equal':
450
- return { query: `e.${attr} = :${key}`, params: { [key]: val } };
451
- case 'not_equal':
452
- return { query: `e.${attr} != :${key}`, params: { [key]: val } };
453
- case 'greater_than':
454
- return { query: `e.${attr} > :${key}`, params: { [key]: val } };
455
- case 'less_than':
456
- return { query: `e.${attr} < :${key}`, params: { [key]: val } };
457
- case 'less_than_qual_to':
458
- return { query: `e.${attr} <= :${key}`, params: { [key]: val } };
459
- case 'greater_than_qual_to':
460
- return { query: `e.${attr} >= :${key}`, params: { [key]: val } };
461
- case 'empty':
462
- return { query: `e.${attr} IS NULL`, params: {} };
463
- case 'not_empty':
464
- return { query: `e.${attr} IS NOT NULL`, params: {} };
465
- default:
466
- throw new common_1.BadRequestException(`Unsupported operator for number: ${op}`);
467
- }
468
- }
469
- buildDateCondition(attr, op, val, key) {
470
- switch (op) {
471
- case 'equal':
472
- return { query: `e.${attr} = :${key}`, params: { [key]: val } };
473
- case 'before':
474
- return { query: `e.${attr} < :${key}`, params: { [key]: val } };
475
- case 'after':
476
- return { query: `e.${attr} > :${key}`, params: { [key]: val } };
477
- case 'between': {
478
- if (typeof val === 'string') {
479
- val = val.split(',').map((v) => v.trim());
480
- }
481
- if (!Array.isArray(val) ||
482
- val.length !== 2 ||
483
- val[0] === '' ||
484
- val[1] === '') {
485
- console.log(`Invalid value for in_between: ${val}`);
486
- return null;
487
- }
488
- return {
489
- query: `e.${attr} BETWEEN :${key}_start AND :${key}_end`,
490
- params: {
491
- [`${key}_start`]: val[0],
492
- [`${key}_end`]: val[1],
493
- },
494
- };
495
- }
496
- case 'today': {
497
- const today = new Date().toISOString().split('T')[0];
498
- return {
499
- query: `DATE(e.${attr}) = :today`,
500
- params: {
501
- today,
502
- },
503
- };
504
- }
505
- case 'empty': {
506
- return {
507
- query: `e.${attr} IS NULL`,
508
- params: {},
509
- };
510
- }
511
- case 'not_empty': {
512
- return {
513
- query: `e.${attr} IS NOT NULL`,
514
- params: {},
515
- };
516
- }
517
- default:
518
- throw new common_1.BadRequestException(`Unsupported operator for date: ${op}`);
519
- }
520
- }
521
- buildSelectCondition(attr, op, val, key) {
522
- switch (op) {
523
- case 'equal':
524
- return { query: `e.${attr} = :${key}`, params: { [key]: val } };
525
- case 'not_equal':
526
- return { query: `e.${attr} != :${key}`, params: { [key]: val } };
527
- case 'empty':
528
- return { query: `e.${attr} IS NULL`, params: {} };
529
- case 'not_empty':
530
- return { query: `e.${attr} IS NOT NULL`, params: {} };
531
- default:
532
- throw new common_1.BadRequestException(`Unsupported operator for select: ${op}`);
533
- }
534
- }
535
- buildMultiSelectCondition(attr, op, val, key) {
536
- if (Array.isArray(val) && val.length === 0) {
537
- return { query: '1=1', params: {} };
538
- }
539
- if ((op === 'equal' || op === 'not_equal') && !Array.isArray(val)) {
540
- throw new common_1.BadRequestException(`Value for multi-select must be an array for operator: ${op}`);
541
- }
542
- switch (op) {
543
- case 'equal':
544
- return {
545
- query: `e.${attr} IN (:${key})`,
546
- params: { [key]: val },
547
- };
548
- case 'not_equal':
549
- return {
550
- query: `e.${attr} NOT IN (:${key})`,
551
- params: { [key]: val },
552
- };
553
- case 'contains':
554
- return {
555
- query: `e.${attr} LIKE :${key}`,
556
- params: { [key]: `%${val}%` },
557
- };
558
- case 'not_contains':
559
- return {
560
- query: `e.${attr} NOT LIKE :${key}`,
561
- params: { [key]: `%${val}%` },
562
- };
563
- case 'empty':
564
- return { query: `e.${attr} IS NULL`, params: {} };
565
- case 'not_empty':
566
- return { query: `e.${attr} IS NOT NULL`, params: {} };
567
- default:
568
- throw new common_1.BadRequestException(`Unsupported operator for multiselect: ${op}`);
569
- }
570
- }
571
- buildYearCondition(attr, op, val, key) {
572
- switch (op) {
573
- case 'equal':
574
- return {
575
- query: `e.${attr} = :${key}`,
576
- params: { [key]: parseInt(val, 10) },
577
- };
578
- case 'not_equal':
579
- return {
580
- query: `e.${attr} != :${key}`,
581
- params: { [key]: parseInt(val, 10) },
582
- };
583
- case 'greater_than':
584
- return {
585
- query: `e.${attr} > :${key}`,
586
- params: { [key]: parseInt(val, 10) },
587
- };
588
- case 'less_than':
589
- return {
590
- query: `e.${attr} < :${key}`,
591
- params: { [key]: parseInt(val, 10) },
592
- };
593
- default:
594
- throw new common_1.BadRequestException(`Unsupported operator for year: ${op}`);
595
- }
596
- }
597
- };
598
- exports.FilterService = FilterService;
599
- exports.FilterService = FilterService = __decorate([
600
- (0, common_1.Injectable)(),
601
- __param(3, (0, common_1.Inject)('SavedFilterService')),
602
- __param(4, (0, common_1.Inject)('EntityRelationService')),
603
- __param(6, (0, common_1.Inject)()),
604
- __metadata("design:paramtypes", [typeorm_1.DataSource,
605
- attribute_master_service_1.AttributeMasterService,
606
- entity_master_service_1.EntityMasterService,
607
- saved_filter_service_1.SavedFilterService,
608
- entity_relation_service_1.EntityRelationService,
609
- resolver_service_1.ResolverService,
610
- loggingUtil_service_1.LoggingService])
611
- ], FilterService);
612
- //# sourceMappingURL=filter.service.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"filter.service.js","sourceRoot":"","sources":["../../../../src/module/filter/service/filter.service.ts"],"names":[],"mappings":"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"}