rez_core 6.1.4 → 6.1.6

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 (427) hide show
  1. package/.prettierrc +3 -3
  2. package/README.md +99 -99
  3. package/dist/migrations/1732612800000-AddEntityJsonGinIndex.js +10 -10
  4. package/dist/module/auth/guards/role.guard.js +3 -3
  5. package/dist/module/enterprise/service/organization.service.d.ts +1 -1
  6. package/dist/module/enterprise/service/organization.service.js +3 -4
  7. package/dist/module/enterprise/service/organization.service.js.map +1 -1
  8. package/dist/module/filter/repository/saved-filter.repository.js +2 -0
  9. package/dist/module/filter/repository/saved-filter.repository.js.map +1 -1
  10. package/dist/module/filter/service/filter.service.js +25 -21
  11. package/dist/module/filter/service/filter.service.js.map +1 -1
  12. package/dist/module/filter/service/flatjson-filter.service.js +5 -5
  13. package/dist/module/integration/examples/usage.example.js +9 -9
  14. package/dist/module/integration/service/integration.service.d.ts +5 -1
  15. package/dist/module/integration/service/integration.service.js +11 -1
  16. package/dist/module/integration/service/integration.service.js.map +1 -1
  17. package/dist/module/integration/service/oauth.service.js +2 -0
  18. package/dist/module/integration/service/oauth.service.js.map +1 -1
  19. package/dist/module/integration/strategies/email/gmail-api.strategy.js +23 -7
  20. package/dist/module/integration/strategies/email/gmail-api.strategy.js.map +1 -1
  21. package/dist/module/integration/strategies/email/sendgrid-api.strategy.js +8 -5
  22. package/dist/module/integration/strategies/email/sendgrid-api.strategy.js.map +1 -1
  23. package/dist/module/meta/controller/media.controller.d.ts +6 -0
  24. package/dist/module/meta/controller/media.controller.js +27 -0
  25. package/dist/module/meta/controller/media.controller.js.map +1 -1
  26. package/dist/module/meta/entity/media-data.entity.d.ts +2 -0
  27. package/dist/module/meta/entity/media-data.entity.js +8 -0
  28. package/dist/module/meta/entity/media-data.entity.js.map +1 -1
  29. package/dist/module/meta/repository/attribute-master.repository.js +8 -8
  30. package/dist/module/meta/service/entity-dynamic.service.js +18 -18
  31. package/dist/module/meta/service/entity-dynamic.service.js.map +1 -1
  32. package/dist/module/meta/service/media-data.service.d.ts +3 -0
  33. package/dist/module/meta/service/media-data.service.js +16 -6
  34. package/dist/module/meta/service/media-data.service.js.map +1 -1
  35. package/dist/module/meta/service/populate-meta.service.js +8 -2
  36. package/dist/module/meta/service/populate-meta.service.js.map +1 -1
  37. package/dist/module/meta/service/resolver.service.js +39 -15
  38. package/dist/module/meta/service/resolver.service.js.map +1 -1
  39. package/dist/module/module/repository/menu.repository.js +4 -4
  40. package/dist/module/user/controller/login.controller.js +19 -19
  41. package/dist/module/user/controller/login.controller.js.map +1 -1
  42. package/dist/module/user/service/user-session.service.js +1 -0
  43. package/dist/module/user/service/user-session.service.js.map +1 -1
  44. package/dist/module/workflow/repository/action.repository.js +2 -2
  45. package/dist/module/workflow/repository/stage.repository.js +8 -8
  46. package/dist/module/workflow/service/action-template-mapping.service.js +2 -2
  47. package/dist/module/workflow/service/action.service.js +5 -5
  48. package/dist/module/workflow/service/entity-modification.service.js +2 -2
  49. package/dist/module/workflow/service/populate-workflow.service.js +5 -0
  50. package/dist/module/workflow/service/populate-workflow.service.js.map +1 -1
  51. package/dist/module/workflow/service/task.service.js +8 -8
  52. package/dist/module/workflow-automation/service/schedule-handler.service.js +9 -9
  53. package/dist/tsconfig.build.tsbuildinfo +1 -1
  54. package/dist/utils/service/reflection-helper.service.js +2 -2
  55. package/docs/modules/event-driven-integration-design.md +91 -91
  56. package/docs/modules/integration.md +250 -250
  57. package/eslint.config.mjs +34 -34
  58. package/nest-cli.json +14 -14
  59. package/package.json +125 -125
  60. package/src/app.controller.ts +13 -13
  61. package/src/app.module.ts +68 -68
  62. package/src/app.service.ts +8 -8
  63. package/src/config/bull.config.ts +69 -69
  64. package/src/config/config.module.ts +17 -17
  65. package/src/config/database.config.ts +48 -48
  66. package/src/constant/global.constant.ts +67 -67
  67. package/src/core.module.ts +94 -94
  68. package/src/decorators/roles.decorator.ts +7 -7
  69. package/src/dtos/response.dto.ts +6 -6
  70. package/src/dtos/response.ts +5 -5
  71. package/src/index.ts +1 -1
  72. package/src/migrations/1732612800000-AddEntityJsonGinIndex.ts +41 -41
  73. package/src/module/auth/auth.module.ts +49 -49
  74. package/src/module/auth/controller/auth.controller.ts +28 -28
  75. package/src/module/auth/guards/google-auth.guard.ts +9 -9
  76. package/src/module/auth/guards/jwt.guard.ts +22 -22
  77. package/src/module/auth/guards/role.guard.ts +68 -68
  78. package/src/module/auth/services/auth.service.ts +56 -56
  79. package/src/module/auth/services/jwt.service.ts +11 -11
  80. package/src/module/auth/strategies/google.strategy.ts +54 -54
  81. package/src/module/auth/strategies/jwt.strategy.ts +58 -58
  82. package/src/module/auth/strategies/local.strategy.ts +13 -13
  83. package/src/module/dashboard/controller/dashboard.controller.ts +38 -38
  84. package/src/module/dashboard/dashboard.module.ts +21 -21
  85. package/src/module/dashboard/entity/dashboard_page_data.entity.ts +27 -27
  86. package/src/module/dashboard/entity/widget_master.entity.ts +18 -18
  87. package/src/module/dashboard/repository/dashboard.repository.ts +49 -49
  88. package/src/module/dashboard/service/dashboard.service.ts +72 -72
  89. package/src/module/enterprise/controller/organization.controller.ts +36 -36
  90. package/src/module/enterprise/enterprise.module.ts +45 -45
  91. package/src/module/enterprise/entity/enterprise.entity.ts +37 -37
  92. package/src/module/enterprise/entity/organization-app-mapping.entity.ts +13 -13
  93. package/src/module/enterprise/entity/organization.entity.ts +92 -92
  94. package/src/module/enterprise/repository/enterprise.repository.ts +31 -31
  95. package/src/module/enterprise/repository/organization.repository.ts +26 -26
  96. package/src/module/enterprise/repository/school.repository.ts +289 -289
  97. package/src/module/enterprise/service/brand.service.ts +5 -5
  98. package/src/module/enterprise/service/enterprise.service.ts +16 -16
  99. package/src/module/enterprise/service/organization-app-mapping.service.ts +4 -4
  100. package/src/module/enterprise/service/organization.service.ts +146 -145
  101. package/src/module/entity_json/controller/entity_json.controller.ts +60 -60
  102. package/src/module/entity_json/docs/FlatJson_Filterin_System.md +2803 -2803
  103. package/src/module/entity_json/entity/entityJson.entity.ts +42 -42
  104. package/src/module/entity_json/entity_json.module.ts +22 -22
  105. package/src/module/entity_json/service/entityJson.repository.ts +37 -37
  106. package/src/module/entity_json/service/entity_json.service.ts +486 -486
  107. package/src/module/export/controller/export.controller.ts +83 -83
  108. package/src/module/export/export.module.ts +14 -14
  109. package/src/module/export/service/export.service.ts +105 -105
  110. package/src/module/filter/controller/filter.controller.ts +87 -87
  111. package/src/module/filter/dto/filter-request.dto.ts +39 -39
  112. package/src/module/filter/entity/saved-filter-detail.entity.ts +41 -41
  113. package/src/module/filter/entity/saved-filter-master.entity.ts +35 -35
  114. package/src/module/filter/filter.module.ts +41 -41
  115. package/src/module/filter/repository/saved-filter.repository.ts +249 -247
  116. package/src/module/filter/repository/saved.filter-detail.repository.ts +19 -19
  117. package/src/module/filter/service/filter-evaluator.service.ts +82 -82
  118. package/src/module/filter/service/filter.service.ts +1406 -1370
  119. package/src/module/filter/service/flatjson-filter.service.ts +903 -903
  120. package/src/module/filter/service/saved-filter.service.ts +154 -154
  121. package/src/module/filter/test/flatjson-filter.service.spec.ts +415 -415
  122. package/src/module/ics/controller/ics.controller.ts +21 -21
  123. package/src/module/ics/dto/ics.dto.ts +55 -55
  124. package/src/module/ics/ics.module.ts +13 -13
  125. package/src/module/ics/service/ics.service.ts +57 -57
  126. package/src/module/integration/controller/calender-event.controller.ts +31 -31
  127. package/src/module/integration/controller/integration.controller.ts +662 -662
  128. package/src/module/integration/controller/wrapper.controller.ts +37 -37
  129. package/src/module/integration/dto/create-config.dto.ts +526 -526
  130. package/src/module/integration/entity/integration-config.entity.ts +112 -112
  131. package/src/module/integration/entity/integration-entity-mapper.entity.ts +14 -14
  132. package/src/module/integration/entity/integration-source.entity.ts +17 -17
  133. package/src/module/integration/entity/user-integration.entity.ts +71 -71
  134. package/src/module/integration/examples/usage.example.ts +338 -338
  135. package/src/module/integration/factories/base.factory.ts +7 -7
  136. package/src/module/integration/factories/email.factory.ts +49 -49
  137. package/src/module/integration/factories/integration.factory.ts +121 -121
  138. package/src/module/integration/factories/sms.factory.ts +51 -51
  139. package/src/module/integration/factories/telephone.factory.ts +41 -41
  140. package/src/module/integration/factories/whatsapp.factory.ts +56 -56
  141. package/src/module/integration/integration.module.ts +110 -110
  142. package/src/module/integration/service/calendar-event.service.ts +118 -118
  143. package/src/module/integration/service/integration-entity-mapper.service.ts +17 -17
  144. package/src/module/integration/service/integration-queue.service.ts +229 -229
  145. package/src/module/integration/service/integration.service.ts +2653 -2639
  146. package/src/module/integration/service/oauth.service.ts +226 -224
  147. package/src/module/integration/service/wrapper.service.ts +754 -754
  148. package/src/module/integration/strategies/email/gmail-api.strategy.ts +307 -281
  149. package/src/module/integration/strategies/email/outlook-api.strategy.ts +44 -44
  150. package/src/module/integration/strategies/email/outlook.strategy.ts +64 -64
  151. package/src/module/integration/strategies/email/sendgrid-api.strategy.ts +263 -260
  152. package/src/module/integration/strategies/integration.strategy.ts +97 -97
  153. package/src/module/integration/strategies/sms/gupshup-sms.strategy.ts +146 -146
  154. package/src/module/integration/strategies/sms/msg91-sms.strategy.ts +164 -164
  155. package/src/module/integration/strategies/sms/tubelight-sms.strategy.ts +163 -163
  156. package/src/module/integration/strategies/telephone/ozonetel-voice.strategy.ts +238 -238
  157. package/src/module/integration/strategies/telephone/tubelight-voice.strategy.ts +210 -210
  158. package/src/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.ts +359 -359
  159. package/src/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.ts +372 -372
  160. package/src/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.ts +403 -403
  161. package/src/module/integration/strategies/whatsapp/whatsapp.strategy.ts +57 -57
  162. package/src/module/layout/controller/layout.controller.ts +47 -47
  163. package/src/module/layout/entity/header-items.entity.ts +28 -28
  164. package/src/module/layout/entity/header-section.entity.ts +19 -19
  165. package/src/module/layout/layout.module.ts +21 -21
  166. package/src/module/layout/repository/header-items.repository.ts +18 -18
  167. package/src/module/layout/repository/header-section.repository.ts +22 -22
  168. package/src/module/layout/service/header-section.service.ts +25 -25
  169. package/src/module/layout_preference/controller/layout_preference.controller.ts +76 -76
  170. package/src/module/layout_preference/entity/layout_preference.entity.ts +28 -28
  171. package/src/module/layout_preference/layout_preference.module.ts +22 -22
  172. package/src/module/layout_preference/repository/layout_preference.repository.ts +65 -65
  173. package/src/module/layout_preference/service/layout_preference.service.ts +191 -191
  174. package/src/module/lead/controller/lead.controller.ts +30 -30
  175. package/src/module/lead/lead.module.ts +14 -14
  176. package/src/module/lead/repository/lead.repository.ts +41 -41
  177. package/src/module/lead/service/lead.service.ts +54 -54
  178. package/src/module/linked_attributes/controller/linked_attributes.controller.ts +137 -137
  179. package/src/module/linked_attributes/dto/create-linked-attribute-smart.dto.ts +54 -54
  180. package/src/module/linked_attributes/entity/linked_attribute.entity.ts +51 -51
  181. package/src/module/linked_attributes/linked_attributes.module.ts +23 -23
  182. package/src/module/linked_attributes/repository/linked_attribute.repository.ts +12 -12
  183. package/src/module/linked_attributes/service/linked_attributes.service.ts +648 -648
  184. package/src/module/linked_attributes/test/linked-attributes.service.spec.ts +244 -244
  185. package/src/module/listmaster/controller/list-master.controller.ts +230 -230
  186. package/src/module/listmaster/entity/list-master-items.entity.ts +43 -43
  187. package/src/module/listmaster/entity/list-master.entity.ts +33 -33
  188. package/src/module/listmaster/listmaster.module.ts +46 -46
  189. package/src/module/listmaster/repository/list-master-items.repository.ts +173 -173
  190. package/src/module/listmaster/repository/list-master.repository.ts +56 -56
  191. package/src/module/listmaster/service/list-master-engine.ts +19 -19
  192. package/src/module/listmaster/service/list-master-extension.interface.ts +4 -4
  193. package/src/module/listmaster/service/list-master-item.service.ts +280 -280
  194. package/src/module/listmaster/service/list-master-registry.ts +15 -15
  195. package/src/module/listmaster/service/list-master.service.ts +527 -527
  196. package/src/module/mapper/controller/field-mapper.controller.ts +76 -76
  197. package/src/module/mapper/controller/mapper.controller.ts +20 -20
  198. package/src/module/mapper/dto/field-mapper.dto.ts +14 -14
  199. package/src/module/mapper/entity/field-lovs.entity.ts +19 -19
  200. package/src/module/mapper/entity/field-mapper.entity.ts +53 -53
  201. package/src/module/mapper/entity/mapper.entity.ts +16 -16
  202. package/src/module/mapper/mapper.module.ts +35 -35
  203. package/src/module/mapper/repository/field-lovs.repository.ts +35 -35
  204. package/src/module/mapper/repository/field-mapper.repository.ts +42 -42
  205. package/src/module/mapper/repository/mapper.repository.ts +32 -32
  206. package/src/module/mapper/service/field-mapper.service.ts +269 -269
  207. package/src/module/mapper/service/mapper.service.ts +80 -80
  208. package/src/module/master/controller/master.controller.ts +74 -74
  209. package/src/module/master/service/master.service.ts +484 -484
  210. package/src/module/meta/controller/app-master.controller.ts +38 -38
  211. package/src/module/meta/controller/attribute-master.controller.ts +96 -96
  212. package/src/module/meta/controller/entity-dynamic.controller.ts +125 -125
  213. package/src/module/meta/controller/entity-master.controller.ts +41 -41
  214. package/src/module/meta/controller/entity-relation.controller.ts +36 -36
  215. package/src/module/meta/controller/entity.controller.ts +308 -308
  216. package/src/module/meta/controller/entity.public.controller.ts +75 -75
  217. package/src/module/meta/controller/media.controller.ts +167 -135
  218. package/src/module/meta/controller/meta.controller.ts +101 -101
  219. package/src/module/meta/controller/view-master.controller.ts +79 -79
  220. package/src/module/meta/dto/entity-list-data.dto.ts +6 -6
  221. package/src/module/meta/dto/entity-tab.dto.ts +4 -4
  222. package/src/module/meta/dto/entity-table.dto.ts +12 -12
  223. package/src/module/meta/entity/app-master.entity.ts +37 -37
  224. package/src/module/meta/entity/attribute-master.entity.ts +92 -92
  225. package/src/module/meta/entity/base-entity.entity.ts +75 -75
  226. package/src/module/meta/entity/entity-master.entity.ts +91 -91
  227. package/src/module/meta/entity/entity-relation-data.entity.ts +29 -29
  228. package/src/module/meta/entity/entity-relation.entity.ts +23 -23
  229. package/src/module/meta/entity/entity-table-column.entity.ts +61 -61
  230. package/src/module/meta/entity/entity-table.entity.ts +50 -50
  231. package/src/module/meta/entity/media-data.entity.ts +38 -32
  232. package/src/module/meta/entity/preference.entity.ts +62 -62
  233. package/src/module/meta/entity/view-master.entity.ts +41 -41
  234. package/src/module/meta/entity.module.ts +165 -165
  235. package/src/module/meta/repository/app-master.repository.ts +20 -20
  236. package/src/module/meta/repository/attribute-master.repository.ts +164 -164
  237. package/src/module/meta/repository/entity-attribute-update.repository.ts +48 -48
  238. package/src/module/meta/repository/entity-master.repository.ts +120 -120
  239. package/src/module/meta/repository/entity-relation.repository.ts +22 -22
  240. package/src/module/meta/repository/entity-table-column.repository.ts +39 -39
  241. package/src/module/meta/repository/entity-table.repository.ts +53 -53
  242. package/src/module/meta/repository/media-data.repository.ts +50 -50
  243. package/src/module/meta/repository/preference.repository.ts +20 -20
  244. package/src/module/meta/repository/user-app-mapping.repository.ts +28 -28
  245. package/src/module/meta/repository/view-master.repository.ts +42 -42
  246. package/src/module/meta/service/app-master.service.ts +37 -37
  247. package/src/module/meta/service/attribute-master.service.ts +160 -160
  248. package/src/module/meta/service/common.service.ts +9 -9
  249. package/src/module/meta/service/entity-attribute-update.service.ts +26 -26
  250. package/src/module/meta/service/entity-dynamic.service.ts +835 -824
  251. package/src/module/meta/service/entity-master.service.ts +172 -172
  252. package/src/module/meta/service/entity-realation-data.service.ts +9 -9
  253. package/src/module/meta/service/entity-relation.service.ts +78 -78
  254. package/src/module/meta/service/entity-service-impl.service.ts +389 -389
  255. package/src/module/meta/service/entity-table-column.service.ts +26 -26
  256. package/src/module/meta/service/entity-table.service.ts +171 -171
  257. package/src/module/meta/service/entity-validation.service.ts +188 -188
  258. package/src/module/meta/service/entity.service.ts +48 -48
  259. package/src/module/meta/service/field-group.service.ts +103 -103
  260. package/src/module/meta/service/media-data.service.ts +610 -591
  261. package/src/module/meta/service/populate-meta.service.ts +228 -222
  262. package/src/module/meta/service/preference.service.ts +16 -16
  263. package/src/module/meta/service/resolver.service.ts +347 -319
  264. package/src/module/meta/service/section-master.service.ts +104 -104
  265. package/src/module/meta/service/update-form-json.service.ts +22 -22
  266. package/src/module/meta/service/user-app-mapping.service.ts +17 -17
  267. package/src/module/meta/service/view-master.service.ts +127 -127
  268. package/src/module/microservice-client/microservice-clients.module.ts +13 -13
  269. package/src/module/microservice-client/service/microservice-client-factory.ts +37 -37
  270. package/src/module/microservice-client/service/microservice-clients.ts +4 -4
  271. package/src/module/module/controller/menu.controller.ts +15 -15
  272. package/src/module/module/controller/module-access.controller.ts +133 -133
  273. package/src/module/module/entity/menu.entity.ts +43 -43
  274. package/src/module/module/entity/module-access.entity.ts +25 -25
  275. package/src/module/module/entity/module-action.entity.ts +17 -17
  276. package/src/module/module/entity/module.entity.ts +52 -52
  277. package/src/module/module/module.module.ts +42 -42
  278. package/src/module/module/repository/menu.repository.ts +186 -186
  279. package/src/module/module/repository/module-access.repository.ts +344 -344
  280. package/src/module/module/service/menu.service.ts +82 -82
  281. package/src/module/module/service/module-access.service.ts +189 -189
  282. package/src/module/notification/controller/notification.controller.ts +58 -58
  283. package/src/module/notification/controller/otp.controller.ts +117 -117
  284. package/src/module/notification/entity/notification.entity.ts +26 -26
  285. package/src/module/notification/entity/otp.entity.ts +28 -28
  286. package/src/module/notification/firebase-admin.config.ts +22 -22
  287. package/src/module/notification/notification.module.ts +71 -71
  288. package/src/module/notification/repository/notification.repository.ts +33 -33
  289. package/src/module/notification/repository/otp.repository.ts +27 -27
  290. package/src/module/notification/service/email.service.ts +127 -127
  291. package/src/module/notification/service/notification.service.ts +146 -146
  292. package/src/module/notification/service/otp.service.ts +133 -133
  293. package/src/module/third-party-module/entity/third-party-api-registry.entity.ts +52 -52
  294. package/src/module/third-party-module/repository/third-party-api-registry.repository.ts +20 -20
  295. package/src/module/third-party-module/service/api-registry.service.ts +13 -13
  296. package/src/module/third-party-module/third-party.module.ts +12 -12
  297. package/src/module/user/controller/login.controller.ts +199 -198
  298. package/src/module/user/controller/user.controller.ts +40 -40
  299. package/src/module/user/dto/create-user.dto.ts +62 -62
  300. package/src/module/user/dto/update-user.dto.ts +4 -4
  301. package/src/module/user/entity/role.entity.ts +33 -33
  302. package/src/module/user/entity/user-role-mapping.entity.ts +38 -38
  303. package/src/module/user/entity/user-session.entity.ts +73 -73
  304. package/src/module/user/entity/user.entity.ts +62 -62
  305. package/src/module/user/repository/role.repository.ts +96 -96
  306. package/src/module/user/repository/user-role-mapping.repository.ts +126 -126
  307. package/src/module/user/repository/user.repository.ts +50 -50
  308. package/src/module/user/repository/userSession.repository.ts +33 -33
  309. package/src/module/user/service/login.service.ts +326 -326
  310. package/src/module/user/service/role.service.ts +197 -197
  311. package/src/module/user/service/user-role-mapping.service.ts +98 -98
  312. package/src/module/user/service/user-session.service.ts +201 -200
  313. package/src/module/user/service/user.service.ts +368 -368
  314. package/src/module/user/user.module.ts +65 -65
  315. package/src/module/workflow/controller/action-category.controller.ts +54 -54
  316. package/src/module/workflow/controller/action-resource-mapping.controller.ts +23 -23
  317. package/src/module/workflow/controller/action-template-mapping.controller.ts +35 -35
  318. package/src/module/workflow/controller/action.controller.ts +111 -111
  319. package/src/module/workflow/controller/activity-log.controller.ts +55 -55
  320. package/src/module/workflow/controller/comm-template.controller.ts +43 -43
  321. package/src/module/workflow/controller/entity-modification.controller.ts +35 -35
  322. package/src/module/workflow/controller/form-master.controller.ts +43 -43
  323. package/src/module/workflow/controller/stage-group.controller.ts +49 -49
  324. package/src/module/workflow/controller/stage.controller.ts +51 -51
  325. package/src/module/workflow/controller/task.controller.ts +77 -77
  326. package/src/module/workflow/controller/workflow-list-master.controller.ts +44 -44
  327. package/src/module/workflow/controller/workflow-meta.controller.ts +80 -80
  328. package/src/module/workflow/controller/workflow.controller.ts +67 -67
  329. package/src/module/workflow/entity/action-category.entity.ts +38 -38
  330. package/src/module/workflow/entity/action-data.entity.ts +55 -55
  331. package/src/module/workflow/entity/action-resources-mapping.entity.ts +29 -29
  332. package/src/module/workflow/entity/action-template-mapping.entity.ts +17 -17
  333. package/src/module/workflow/entity/action.entity.ts +53 -53
  334. package/src/module/workflow/entity/activity-log.entity.ts +43 -43
  335. package/src/module/workflow/entity/comm-template.entity.ts +43 -43
  336. package/src/module/workflow/entity/entity-modification.entity.ts +38 -38
  337. package/src/module/workflow/entity/form.entity.ts +25 -25
  338. package/src/module/workflow/entity/stage-action-mapping.entity.ts +17 -17
  339. package/src/module/workflow/entity/stage-group.entity.ts +23 -23
  340. package/src/module/workflow/entity/stage-movement-data.entity.ts +38 -38
  341. package/src/module/workflow/entity/stage.entity.ts +20 -20
  342. package/src/module/workflow/entity/task-data.entity.ts +88 -88
  343. package/src/module/workflow/entity/template-attach-mapper.entity.ts +30 -30
  344. package/src/module/workflow/entity/workflow-data.entity.ts +11 -11
  345. package/src/module/workflow/entity/workflow-level-mapping.entity.ts +18 -18
  346. package/src/module/workflow/entity/workflow.entity.ts +20 -20
  347. package/src/module/workflow/repository/action-category.repository.ts +79 -79
  348. package/src/module/workflow/repository/action-data.repository.ts +354 -354
  349. package/src/module/workflow/repository/action.repository.ts +339 -339
  350. package/src/module/workflow/repository/activity-log.repository.ts +148 -148
  351. package/src/module/workflow/repository/comm-template.repository.ts +157 -157
  352. package/src/module/workflow/repository/form-master.repository.ts +50 -50
  353. package/src/module/workflow/repository/stage-group.repository.ts +186 -186
  354. package/src/module/workflow/repository/stage-movement.repository.ts +217 -217
  355. package/src/module/workflow/repository/stage.repository.ts +160 -160
  356. package/src/module/workflow/repository/task.repository.ts +156 -156
  357. package/src/module/workflow/repository/workflow.repository.ts +42 -42
  358. package/src/module/workflow/service/action-category.service.ts +33 -33
  359. package/src/module/workflow/service/action-data.service.ts +62 -62
  360. package/src/module/workflow/service/action-resources-mapping.service.ts +10 -10
  361. package/src/module/workflow/service/action-template-mapping.service.ts +137 -137
  362. package/src/module/workflow/service/action.service.ts +302 -302
  363. package/src/module/workflow/service/activity-log.service.ts +107 -107
  364. package/src/module/workflow/service/comm-template.service.ts +181 -181
  365. package/src/module/workflow/service/entity-modification.service.ts +61 -61
  366. package/src/module/workflow/service/form-master.service.ts +35 -35
  367. package/src/module/workflow/service/populate-workflow.service.ts +325 -320
  368. package/src/module/workflow/service/stage-action-mapping.service.ts +5 -5
  369. package/src/module/workflow/service/stage-group.service.ts +325 -325
  370. package/src/module/workflow/service/stage.service.ts +197 -197
  371. package/src/module/workflow/service/task.service.ts +551 -551
  372. package/src/module/workflow/service/workflow-list-master.service.ts +68 -68
  373. package/src/module/workflow/service/workflow-meta.service.ts +640 -640
  374. package/src/module/workflow/service/workflow.service.ts +213 -213
  375. package/src/module/workflow/workflow.module.ts +180 -180
  376. package/src/module/workflow-automation/SCHEDULING_GUIDE.md +145 -145
  377. package/src/module/workflow-automation/controller/workflow-automation.controller.ts +43 -43
  378. package/src/module/workflow-automation/entity/workflow-automation-action.entity.ts +26 -26
  379. package/src/module/workflow-automation/entity/workflow-automation.entity.ts +40 -40
  380. package/src/module/workflow-automation/interface/action.decorator.ts +7 -7
  381. package/src/module/workflow-automation/interface/action.interface.ts +5 -5
  382. package/src/module/workflow-automation/service/action-registery.service.ts +35 -35
  383. package/src/module/workflow-automation/service/schedule-handler.service.ts +168 -168
  384. package/src/module/workflow-automation/service/workflow-automation-engine.service.ts +219 -219
  385. package/src/module/workflow-automation/service/workflow-automation.service.ts +474 -474
  386. package/src/module/workflow-automation/workflow-automation.module.ts +54 -54
  387. package/src/module/workflow-schedule/INSTALLATION.md +244 -244
  388. package/src/module/workflow-schedule/MULTI_PROJECT_GUIDE.md +196 -196
  389. package/src/module/workflow-schedule/README.md +422 -422
  390. package/src/module/workflow-schedule/constants/schedule.constants.ts +48 -48
  391. package/src/module/workflow-schedule/controller/workflow-schedule.controller.ts +253 -253
  392. package/src/module/workflow-schedule/docs/CLAUDE_CODE_GUIDE.md +510 -510
  393. package/src/module/workflow-schedule/docs/CLAUDE_CODE_PROMPT.md +362 -362
  394. package/src/module/workflow-schedule/docs/RUN_CLAUDE_CODE.sh +68 -68
  395. package/src/module/workflow-schedule/dto/create-schedule.dto.ts +147 -147
  396. package/src/module/workflow-schedule/dto/get-execution-logs.dto.ts +119 -119
  397. package/src/module/workflow-schedule/dto/update-schedule.dto.ts +96 -96
  398. package/src/module/workflow-schedule/entities/scheduled-workflow.entity.ts +148 -148
  399. package/src/module/workflow-schedule/entities/workflow-execution-log.entity.ts +154 -154
  400. package/src/module/workflow-schedule/interfaces/schedule-job-data.interface.ts +53 -53
  401. package/src/module/workflow-schedule/interfaces/workflow-schedule-options.interface.ts +12 -12
  402. package/src/module/workflow-schedule/processors/schedule.processor.ts +620 -620
  403. package/src/module/workflow-schedule/service/workflow-schedule.service.ts +597 -597
  404. package/src/module/workflow-schedule/workflow-schedule.module.ts +67 -67
  405. package/src/resources/dev.properties.yaml +31 -31
  406. package/src/resources/local.properties.yaml +27 -27
  407. package/src/resources/properties.module.ts +12 -12
  408. package/src/resources/properties.yaml.ts +11 -11
  409. package/src/resources/uat.properties.yaml +31 -31
  410. package/src/table.config.ts +135 -135
  411. package/src/utils/dto/excel-data.dto.ts +14 -14
  412. package/src/utils/dto/excelsheet-data.dto.ts +5 -5
  413. package/src/utils/service/base64util.service.ts +18 -18
  414. package/src/utils/service/clockIDGenUtil.service.ts +21 -21
  415. package/src/utils/service/codeGenerator.service.ts +22 -22
  416. package/src/utils/service/dateUtil.service.ts +17 -17
  417. package/src/utils/service/encryptUtil.service.ts +97 -97
  418. package/src/utils/service/excel-helper.service.ts +72 -72
  419. package/src/utils/service/excelUtil.service.ts +15 -15
  420. package/src/utils/service/file-util.service.ts +11 -11
  421. package/src/utils/service/json-util.service.ts +23 -23
  422. package/src/utils/service/loggingUtil.service.ts +88 -88
  423. package/src/utils/service/reflection-helper.service.ts +62 -62
  424. package/src/utils/service/wbsCodeGen.service.ts +8 -8
  425. package/src/utils/utils.module.ts +27 -27
  426. package/tsconfig.build.json +4 -4
  427. package/tsconfig.json +24 -24
@@ -1,415 +1,415 @@
1
- import { Test, TestingModule } from '@nestjs/testing';
2
- import { FlatjsonFilterService } from '../service/flatjson-filter.service';
3
- import { EntityManager } from 'typeorm';
4
- import { EntityMasterService } from 'src/module/meta/service/entity-master.service';
5
- import { AttributeMasterService } from 'src/module/meta/service/attribute-master.service';
6
- import { ResolverService } from 'src/module/meta/service/resolver.service';
7
- import { LoggingService } from 'src/utils/service/loggingUtil.service';
8
- import { ConfigService } from '@nestjs/config';
9
- import { SavedFilterRepositoryService } from '../repository/saved-filter.repository';
10
-
11
- describe('FlatjsonFilterService - Phase 2 Tests', () => {
12
- let service: FlatjsonFilterService;
13
-
14
- const mockEntityManager = {
15
- getRepository: jest.fn(),
16
- };
17
-
18
- const mockEntityMasterService = {};
19
- const mockAttributeMasterService = {
20
- findAttributesByMappedEntityType: jest.fn(),
21
- };
22
- const mockResolverService = {
23
- resolveEntitiesByIds: jest.fn(),
24
- };
25
- const mockLoggingService = {
26
- log: jest.fn(),
27
- };
28
- const mockConfigService = {};
29
- const mockSavedFilterRepositoryService = {
30
- getDetailsByCode: jest.fn(),
31
- };
32
-
33
- beforeEach(async () => {
34
- const module: TestingModule = await Test.createTestingModule({
35
- providers: [
36
- FlatjsonFilterService,
37
- { provide: EntityManager, useValue: mockEntityManager },
38
- { provide: EntityMasterService, useValue: mockEntityMasterService },
39
- {
40
- provide: AttributeMasterService,
41
- useValue: mockAttributeMasterService,
42
- },
43
- { provide: ResolverService, useValue: mockResolverService },
44
- { provide: LoggingService, useValue: mockLoggingService },
45
- { provide: ConfigService, useValue: mockConfigService },
46
- {
47
- provide: SavedFilterRepositoryService,
48
- useValue: mockSavedFilterRepositoryService,
49
- },
50
- ],
51
- }).compile();
52
-
53
- service = module.get<FlatjsonFilterService>(FlatjsonFilterService);
54
- });
55
-
56
- afterEach(() => {
57
- jest.clearAllMocks();
58
- });
59
-
60
- describe('Task 2.3: Text Conditions', () => {
61
- it('should build equal condition for text', () => {
62
- const condition = service['buildTextCondition'](
63
- 'LEAD__name',
64
- 'equal',
65
- 'John',
66
- 'param1',
67
- );
68
-
69
- expect(condition).not.toBeNull();
70
- expect(condition?.query).toContain("json_data->>'LEAD__name'");
71
- expect(condition?.query).toContain('=');
72
- expect(condition?.params.param1).toBe('john'); // lowercase
73
- });
74
-
75
- it('should build contains condition with LIKE', () => {
76
- const condition = service['buildTextCondition'](
77
- 'LEAD__name',
78
- 'contains',
79
- 'John',
80
- 'param1',
81
- );
82
-
83
- expect(condition?.query).toContain('LIKE');
84
- expect(condition?.params.param1).toBe('%john%');
85
- });
86
-
87
- it('should build starts_with condition', () => {
88
- const condition = service['buildTextCondition'](
89
- 'LEAD__name',
90
- 'starts_with',
91
- 'John',
92
- 'param1',
93
- );
94
-
95
- expect(condition?.params.param1).toBe('john%');
96
- });
97
-
98
- it('should build ends_with condition', () => {
99
- const condition = service['buildTextCondition'](
100
- 'LEAD__name',
101
- 'ends_with',
102
- 'Smith',
103
- 'param1',
104
- );
105
-
106
- expect(condition?.params.param1).toBe('%smith');
107
- });
108
-
109
- it('should build empty condition', () => {
110
- const condition = service['buildTextCondition'](
111
- 'LEAD__name',
112
- 'empty',
113
- null,
114
- 'param1',
115
- );
116
-
117
- expect(condition?.query).toContain('IS NULL');
118
- expect(Object.keys(condition?.params || {})).toHaveLength(0);
119
- });
120
- });
121
-
122
- describe('Task 2.4: Number Conditions', () => {
123
- it('should build equal condition for numbers', () => {
124
- const condition = service['buildNumberCondition'](
125
- 'LEAD__age',
126
- 'equal',
127
- 25,
128
- 'param1',
129
- );
130
-
131
- expect(condition?.query).toContain('::numeric');
132
- expect(condition?.query).toContain('=');
133
- expect(condition?.params.param1).toBe(25);
134
- });
135
-
136
- it('should build greater_than condition', () => {
137
- const condition = service['buildNumberCondition'](
138
- 'LEAD__age',
139
- 'greater_than',
140
- 18,
141
- 'param1',
142
- );
143
-
144
- expect(condition?.query).toContain('>');
145
- expect(condition?.params.param1).toBe(18);
146
- });
147
-
148
- it('should build between condition with array', () => {
149
- const condition = service['buildNumberCondition'](
150
- 'LEAD__age',
151
- 'between',
152
- [18, 65],
153
- 'param1',
154
- );
155
-
156
- expect(condition?.query).toContain('BETWEEN');
157
- expect(condition?.params.param1_min).toBe(18);
158
- expect(condition?.params.param1_max).toBe(65);
159
- });
160
-
161
- it('should build between condition with string', () => {
162
- const condition = service['buildNumberCondition'](
163
- 'LEAD__age',
164
- 'between',
165
- '18, 65',
166
- 'param1',
167
- );
168
-
169
- expect(condition?.query).toContain('BETWEEN');
170
- expect(condition?.params.param1_min).toBe(18);
171
- expect(condition?.params.param1_max).toBe(65);
172
- });
173
- });
174
-
175
- describe('Task 2.5: Date Conditions', () => {
176
- it('should build equal condition for dates', () => {
177
- const condition = service['buildDateCondition'](
178
- 'LEAD__created_date',
179
- 'equal',
180
- '2024-01-01',
181
- 'param1',
182
- );
183
-
184
- expect(condition?.query).toContain('::bigint');
185
- expect(condition?.query).toContain('=');
186
- expect(typeof condition?.params.param1).toBe('number');
187
- });
188
-
189
- it('should build before condition', () => {
190
- const condition = service['buildDateCondition'](
191
- 'LEAD__created_date',
192
- 'before',
193
- '2024-12-31',
194
- 'param1',
195
- );
196
-
197
- expect(condition?.query).toContain('<');
198
- });
199
-
200
- it('should build between condition for dates', () => {
201
- const condition = service['buildDateCondition'](
202
- 'LEAD__created_date',
203
- 'between',
204
- ['2024-01-01', '2024-12-31'],
205
- 'param1',
206
- );
207
-
208
- expect(condition?.query).toContain('BETWEEN');
209
- expect(condition?.params.param1_start).toBeDefined();
210
- expect(condition?.params.param1_end).toBeDefined();
211
- });
212
-
213
- it('should build today condition', () => {
214
- const condition = service['buildDateCondition'](
215
- 'LEAD__created_date',
216
- 'today',
217
- null,
218
- 'param1',
219
- );
220
-
221
- expect(condition?.query).toContain('BETWEEN');
222
- expect(condition?.params.param1_start).toBeDefined();
223
- expect(condition?.params.param1_end).toBeDefined();
224
- });
225
-
226
- it('should build in_last_day condition', () => {
227
- const condition = service['buildDateCondition'](
228
- 'LEAD__created_date',
229
- 'in_last_day',
230
- 7,
231
- 'param1',
232
- );
233
-
234
- expect(condition?.query).toContain('BETWEEN');
235
- });
236
- });
237
-
238
- describe('Task 2.6: Select/Multiselect Conditions', () => {
239
- it('should build equal condition for select', () => {
240
- const condition = service['buildSelectCondition'](
241
- 'LEAD__status',
242
- 'equal',
243
- 'NEW',
244
- 'param1',
245
- );
246
-
247
- expect(condition?.query).toContain("json_data->>'LEAD__status'");
248
- expect(condition?.params.param1).toBe('NEW');
249
- });
250
-
251
- it('should build IN condition for array values', () => {
252
- const condition = service['buildSelectCondition'](
253
- 'LEAD__status',
254
- 'equal',
255
- ['NEW', 'ACTIVE'],
256
- 'param1',
257
- );
258
-
259
- expect(condition?.query).toContain('ANY');
260
- expect(Array.isArray(condition?.params.param1)).toBe(true);
261
- });
262
-
263
- it('should build contains condition for multiselect', () => {
264
- const condition = service['buildMultiSelectCondition'](
265
- 'LEAD__languages',
266
- 'contains',
267
- 'hindi',
268
- 'param1',
269
- );
270
-
271
- expect(condition?.query).toContain('?');
272
- expect(condition?.params.param1).toBe('hindi');
273
- });
274
-
275
- it('should build contains_all condition', () => {
276
- const condition = service['buildMultiSelectCondition'](
277
- 'LEAD__languages',
278
- 'contains_all',
279
- ['hindi', 'english'],
280
- 'param1',
281
- );
282
-
283
- expect(condition?.query).toContain('?&');
284
- expect(Array.isArray(condition?.params.param1)).toBe(true);
285
- });
286
-
287
- it('should build contains_any condition', () => {
288
- const condition = service['buildMultiSelectCondition'](
289
- 'LEAD__languages',
290
- 'contains_any',
291
- ['hindi', 'english'],
292
- 'param1',
293
- );
294
-
295
- expect(condition?.query).toContain('?|');
296
- });
297
-
298
- it('should handle comma-separated string input', () => {
299
- const condition = service['buildMultiSelectCondition'](
300
- 'LEAD__languages',
301
- 'contains_any',
302
- 'hindi, english, tamil',
303
- 'param1',
304
- );
305
-
306
- expect(Array.isArray(condition?.params.param1)).toBe(true);
307
- expect(condition?.params.param1).toHaveLength(3);
308
- });
309
- });
310
-
311
- describe('Task 2.9: Sorting', () => {
312
- it('should apply numeric sorting for number fields', () => {
313
- const mockQb = {
314
- orderBy: jest.fn().mockReturnThis(),
315
- addOrderBy: jest.fn().mockReturnThis(),
316
- };
317
-
318
- const attributeMetaMap = {
319
- age: {
320
- data_type: 'number',
321
- flat_json_key: 'LEAD__age',
322
- mapped_entity_type: 'LEAD',
323
- },
324
- };
325
-
326
- const sortby = [{ sortColum: 'age', sortType: 'DESC' }];
327
-
328
- service['applyJsonbSorting'](mockQb as any, sortby, attributeMetaMap);
329
-
330
- expect(mockQb.orderBy).toHaveBeenCalled();
331
- const call = mockQb.orderBy.mock.calls[0];
332
- expect(call[0]).toContain('::numeric');
333
- expect(call[1]).toBe('DESC');
334
- });
335
-
336
- it('should apply bigint sorting for date fields', () => {
337
- const mockQb = {
338
- orderBy: jest.fn().mockReturnThis(),
339
- };
340
-
341
- const attributeMetaMap = {
342
- created_date: {
343
- data_type: 'date',
344
- flat_json_key: 'LEAD__created_date',
345
- mapped_entity_type: 'LEAD',
346
- },
347
- };
348
-
349
- const sortby = [{ sortColum: 'created_date', sortType: 'ASC' }];
350
-
351
- service['applyJsonbSorting'](mockQb as any, sortby, attributeMetaMap);
352
-
353
- const call = mockQb.orderBy.mock.calls[0];
354
- expect(call[0]).toContain('::bigint');
355
- });
356
-
357
- it('should apply text sorting for text fields', () => {
358
- const mockQb = {
359
- orderBy: jest.fn().mockReturnThis(),
360
- };
361
-
362
- const attributeMetaMap = {
363
- name: {
364
- data_type: 'text',
365
- flat_json_key: 'LEAD__name',
366
- mapped_entity_type: 'LEAD',
367
- },
368
- };
369
-
370
- const sortby = [{ sortColum: 'name', sortType: 'ASC' }];
371
-
372
- service['applyJsonbSorting'](mockQb as any, sortby, attributeMetaMap);
373
-
374
- const call = mockQb.orderBy.mock.calls[0];
375
- expect(call[0]).not.toContain('::');
376
- expect(call[0]).toContain("->>"); // Text extraction
377
- });
378
- });
379
-
380
- describe('Edge Cases', () => {
381
- it('should handle NULL values in text conditions', () => {
382
- const condition = service['buildTextCondition'](
383
- 'LEAD__name',
384
- 'equal',
385
- null,
386
- 'param1',
387
- );
388
-
389
- expect(condition).not.toBeNull();
390
- expect(condition?.params.param1).toBe('');
391
- });
392
-
393
- it('should return null for unsupported operators', () => {
394
- const condition = service['buildTextCondition'](
395
- 'LEAD__name',
396
- 'invalid_operator',
397
- 'test',
398
- 'param1',
399
- );
400
-
401
- expect(condition).toBeNull();
402
- });
403
-
404
- it('should handle empty array in multiselect', () => {
405
- const condition = service['buildMultiSelectCondition'](
406
- 'LEAD__languages',
407
- 'contains',
408
- [],
409
- 'param1',
410
- );
411
-
412
- expect(condition?.query).toBe('1=1'); // Always true
413
- });
414
- });
415
- });
1
+ import { Test, TestingModule } from '@nestjs/testing';
2
+ import { FlatjsonFilterService } from '../service/flatjson-filter.service';
3
+ import { EntityManager } from 'typeorm';
4
+ import { EntityMasterService } from 'src/module/meta/service/entity-master.service';
5
+ import { AttributeMasterService } from 'src/module/meta/service/attribute-master.service';
6
+ import { ResolverService } from 'src/module/meta/service/resolver.service';
7
+ import { LoggingService } from 'src/utils/service/loggingUtil.service';
8
+ import { ConfigService } from '@nestjs/config';
9
+ import { SavedFilterRepositoryService } from '../repository/saved-filter.repository';
10
+
11
+ describe('FlatjsonFilterService - Phase 2 Tests', () => {
12
+ let service: FlatjsonFilterService;
13
+
14
+ const mockEntityManager = {
15
+ getRepository: jest.fn(),
16
+ };
17
+
18
+ const mockEntityMasterService = {};
19
+ const mockAttributeMasterService = {
20
+ findAttributesByMappedEntityType: jest.fn(),
21
+ };
22
+ const mockResolverService = {
23
+ resolveEntitiesByIds: jest.fn(),
24
+ };
25
+ const mockLoggingService = {
26
+ log: jest.fn(),
27
+ };
28
+ const mockConfigService = {};
29
+ const mockSavedFilterRepositoryService = {
30
+ getDetailsByCode: jest.fn(),
31
+ };
32
+
33
+ beforeEach(async () => {
34
+ const module: TestingModule = await Test.createTestingModule({
35
+ providers: [
36
+ FlatjsonFilterService,
37
+ { provide: EntityManager, useValue: mockEntityManager },
38
+ { provide: EntityMasterService, useValue: mockEntityMasterService },
39
+ {
40
+ provide: AttributeMasterService,
41
+ useValue: mockAttributeMasterService,
42
+ },
43
+ { provide: ResolverService, useValue: mockResolverService },
44
+ { provide: LoggingService, useValue: mockLoggingService },
45
+ { provide: ConfigService, useValue: mockConfigService },
46
+ {
47
+ provide: SavedFilterRepositoryService,
48
+ useValue: mockSavedFilterRepositoryService,
49
+ },
50
+ ],
51
+ }).compile();
52
+
53
+ service = module.get<FlatjsonFilterService>(FlatjsonFilterService);
54
+ });
55
+
56
+ afterEach(() => {
57
+ jest.clearAllMocks();
58
+ });
59
+
60
+ describe('Task 2.3: Text Conditions', () => {
61
+ it('should build equal condition for text', () => {
62
+ const condition = service['buildTextCondition'](
63
+ 'LEAD__name',
64
+ 'equal',
65
+ 'John',
66
+ 'param1',
67
+ );
68
+
69
+ expect(condition).not.toBeNull();
70
+ expect(condition?.query).toContain("json_data->>'LEAD__name'");
71
+ expect(condition?.query).toContain('=');
72
+ expect(condition?.params.param1).toBe('john'); // lowercase
73
+ });
74
+
75
+ it('should build contains condition with LIKE', () => {
76
+ const condition = service['buildTextCondition'](
77
+ 'LEAD__name',
78
+ 'contains',
79
+ 'John',
80
+ 'param1',
81
+ );
82
+
83
+ expect(condition?.query).toContain('LIKE');
84
+ expect(condition?.params.param1).toBe('%john%');
85
+ });
86
+
87
+ it('should build starts_with condition', () => {
88
+ const condition = service['buildTextCondition'](
89
+ 'LEAD__name',
90
+ 'starts_with',
91
+ 'John',
92
+ 'param1',
93
+ );
94
+
95
+ expect(condition?.params.param1).toBe('john%');
96
+ });
97
+
98
+ it('should build ends_with condition', () => {
99
+ const condition = service['buildTextCondition'](
100
+ 'LEAD__name',
101
+ 'ends_with',
102
+ 'Smith',
103
+ 'param1',
104
+ );
105
+
106
+ expect(condition?.params.param1).toBe('%smith');
107
+ });
108
+
109
+ it('should build empty condition', () => {
110
+ const condition = service['buildTextCondition'](
111
+ 'LEAD__name',
112
+ 'empty',
113
+ null,
114
+ 'param1',
115
+ );
116
+
117
+ expect(condition?.query).toContain('IS NULL');
118
+ expect(Object.keys(condition?.params || {})).toHaveLength(0);
119
+ });
120
+ });
121
+
122
+ describe('Task 2.4: Number Conditions', () => {
123
+ it('should build equal condition for numbers', () => {
124
+ const condition = service['buildNumberCondition'](
125
+ 'LEAD__age',
126
+ 'equal',
127
+ 25,
128
+ 'param1',
129
+ );
130
+
131
+ expect(condition?.query).toContain('::numeric');
132
+ expect(condition?.query).toContain('=');
133
+ expect(condition?.params.param1).toBe(25);
134
+ });
135
+
136
+ it('should build greater_than condition', () => {
137
+ const condition = service['buildNumberCondition'](
138
+ 'LEAD__age',
139
+ 'greater_than',
140
+ 18,
141
+ 'param1',
142
+ );
143
+
144
+ expect(condition?.query).toContain('>');
145
+ expect(condition?.params.param1).toBe(18);
146
+ });
147
+
148
+ it('should build between condition with array', () => {
149
+ const condition = service['buildNumberCondition'](
150
+ 'LEAD__age',
151
+ 'between',
152
+ [18, 65],
153
+ 'param1',
154
+ );
155
+
156
+ expect(condition?.query).toContain('BETWEEN');
157
+ expect(condition?.params.param1_min).toBe(18);
158
+ expect(condition?.params.param1_max).toBe(65);
159
+ });
160
+
161
+ it('should build between condition with string', () => {
162
+ const condition = service['buildNumberCondition'](
163
+ 'LEAD__age',
164
+ 'between',
165
+ '18, 65',
166
+ 'param1',
167
+ );
168
+
169
+ expect(condition?.query).toContain('BETWEEN');
170
+ expect(condition?.params.param1_min).toBe(18);
171
+ expect(condition?.params.param1_max).toBe(65);
172
+ });
173
+ });
174
+
175
+ describe('Task 2.5: Date Conditions', () => {
176
+ it('should build equal condition for dates', () => {
177
+ const condition = service['buildDateCondition'](
178
+ 'LEAD__created_date',
179
+ 'equal',
180
+ '2024-01-01',
181
+ 'param1',
182
+ );
183
+
184
+ expect(condition?.query).toContain('::bigint');
185
+ expect(condition?.query).toContain('=');
186
+ expect(typeof condition?.params.param1).toBe('number');
187
+ });
188
+
189
+ it('should build before condition', () => {
190
+ const condition = service['buildDateCondition'](
191
+ 'LEAD__created_date',
192
+ 'before',
193
+ '2024-12-31',
194
+ 'param1',
195
+ );
196
+
197
+ expect(condition?.query).toContain('<');
198
+ });
199
+
200
+ it('should build between condition for dates', () => {
201
+ const condition = service['buildDateCondition'](
202
+ 'LEAD__created_date',
203
+ 'between',
204
+ ['2024-01-01', '2024-12-31'],
205
+ 'param1',
206
+ );
207
+
208
+ expect(condition?.query).toContain('BETWEEN');
209
+ expect(condition?.params.param1_start).toBeDefined();
210
+ expect(condition?.params.param1_end).toBeDefined();
211
+ });
212
+
213
+ it('should build today condition', () => {
214
+ const condition = service['buildDateCondition'](
215
+ 'LEAD__created_date',
216
+ 'today',
217
+ null,
218
+ 'param1',
219
+ );
220
+
221
+ expect(condition?.query).toContain('BETWEEN');
222
+ expect(condition?.params.param1_start).toBeDefined();
223
+ expect(condition?.params.param1_end).toBeDefined();
224
+ });
225
+
226
+ it('should build in_last_day condition', () => {
227
+ const condition = service['buildDateCondition'](
228
+ 'LEAD__created_date',
229
+ 'in_last_day',
230
+ 7,
231
+ 'param1',
232
+ );
233
+
234
+ expect(condition?.query).toContain('BETWEEN');
235
+ });
236
+ });
237
+
238
+ describe('Task 2.6: Select/Multiselect Conditions', () => {
239
+ it('should build equal condition for select', () => {
240
+ const condition = service['buildSelectCondition'](
241
+ 'LEAD__status',
242
+ 'equal',
243
+ 'NEW',
244
+ 'param1',
245
+ );
246
+
247
+ expect(condition?.query).toContain("json_data->>'LEAD__status'");
248
+ expect(condition?.params.param1).toBe('NEW');
249
+ });
250
+
251
+ it('should build IN condition for array values', () => {
252
+ const condition = service['buildSelectCondition'](
253
+ 'LEAD__status',
254
+ 'equal',
255
+ ['NEW', 'ACTIVE'],
256
+ 'param1',
257
+ );
258
+
259
+ expect(condition?.query).toContain('ANY');
260
+ expect(Array.isArray(condition?.params.param1)).toBe(true);
261
+ });
262
+
263
+ it('should build contains condition for multiselect', () => {
264
+ const condition = service['buildMultiSelectCondition'](
265
+ 'LEAD__languages',
266
+ 'contains',
267
+ 'hindi',
268
+ 'param1',
269
+ );
270
+
271
+ expect(condition?.query).toContain('?');
272
+ expect(condition?.params.param1).toBe('hindi');
273
+ });
274
+
275
+ it('should build contains_all condition', () => {
276
+ const condition = service['buildMultiSelectCondition'](
277
+ 'LEAD__languages',
278
+ 'contains_all',
279
+ ['hindi', 'english'],
280
+ 'param1',
281
+ );
282
+
283
+ expect(condition?.query).toContain('?&');
284
+ expect(Array.isArray(condition?.params.param1)).toBe(true);
285
+ });
286
+
287
+ it('should build contains_any condition', () => {
288
+ const condition = service['buildMultiSelectCondition'](
289
+ 'LEAD__languages',
290
+ 'contains_any',
291
+ ['hindi', 'english'],
292
+ 'param1',
293
+ );
294
+
295
+ expect(condition?.query).toContain('?|');
296
+ });
297
+
298
+ it('should handle comma-separated string input', () => {
299
+ const condition = service['buildMultiSelectCondition'](
300
+ 'LEAD__languages',
301
+ 'contains_any',
302
+ 'hindi, english, tamil',
303
+ 'param1',
304
+ );
305
+
306
+ expect(Array.isArray(condition?.params.param1)).toBe(true);
307
+ expect(condition?.params.param1).toHaveLength(3);
308
+ });
309
+ });
310
+
311
+ describe('Task 2.9: Sorting', () => {
312
+ it('should apply numeric sorting for number fields', () => {
313
+ const mockQb = {
314
+ orderBy: jest.fn().mockReturnThis(),
315
+ addOrderBy: jest.fn().mockReturnThis(),
316
+ };
317
+
318
+ const attributeMetaMap = {
319
+ age: {
320
+ data_type: 'number',
321
+ flat_json_key: 'LEAD__age',
322
+ mapped_entity_type: 'LEAD',
323
+ },
324
+ };
325
+
326
+ const sortby = [{ sortColum: 'age', sortType: 'DESC' }];
327
+
328
+ service['applyJsonbSorting'](mockQb as any, sortby, attributeMetaMap);
329
+
330
+ expect(mockQb.orderBy).toHaveBeenCalled();
331
+ const call = mockQb.orderBy.mock.calls[0];
332
+ expect(call[0]).toContain('::numeric');
333
+ expect(call[1]).toBe('DESC');
334
+ });
335
+
336
+ it('should apply bigint sorting for date fields', () => {
337
+ const mockQb = {
338
+ orderBy: jest.fn().mockReturnThis(),
339
+ };
340
+
341
+ const attributeMetaMap = {
342
+ created_date: {
343
+ data_type: 'date',
344
+ flat_json_key: 'LEAD__created_date',
345
+ mapped_entity_type: 'LEAD',
346
+ },
347
+ };
348
+
349
+ const sortby = [{ sortColum: 'created_date', sortType: 'ASC' }];
350
+
351
+ service['applyJsonbSorting'](mockQb as any, sortby, attributeMetaMap);
352
+
353
+ const call = mockQb.orderBy.mock.calls[0];
354
+ expect(call[0]).toContain('::bigint');
355
+ });
356
+
357
+ it('should apply text sorting for text fields', () => {
358
+ const mockQb = {
359
+ orderBy: jest.fn().mockReturnThis(),
360
+ };
361
+
362
+ const attributeMetaMap = {
363
+ name: {
364
+ data_type: 'text',
365
+ flat_json_key: 'LEAD__name',
366
+ mapped_entity_type: 'LEAD',
367
+ },
368
+ };
369
+
370
+ const sortby = [{ sortColum: 'name', sortType: 'ASC' }];
371
+
372
+ service['applyJsonbSorting'](mockQb as any, sortby, attributeMetaMap);
373
+
374
+ const call = mockQb.orderBy.mock.calls[0];
375
+ expect(call[0]).not.toContain('::');
376
+ expect(call[0]).toContain("->>"); // Text extraction
377
+ });
378
+ });
379
+
380
+ describe('Edge Cases', () => {
381
+ it('should handle NULL values in text conditions', () => {
382
+ const condition = service['buildTextCondition'](
383
+ 'LEAD__name',
384
+ 'equal',
385
+ null,
386
+ 'param1',
387
+ );
388
+
389
+ expect(condition).not.toBeNull();
390
+ expect(condition?.params.param1).toBe('');
391
+ });
392
+
393
+ it('should return null for unsupported operators', () => {
394
+ const condition = service['buildTextCondition'](
395
+ 'LEAD__name',
396
+ 'invalid_operator',
397
+ 'test',
398
+ 'param1',
399
+ );
400
+
401
+ expect(condition).toBeNull();
402
+ });
403
+
404
+ it('should handle empty array in multiselect', () => {
405
+ const condition = service['buildMultiSelectCondition'](
406
+ 'LEAD__languages',
407
+ 'contains',
408
+ [],
409
+ 'param1',
410
+ );
411
+
412
+ expect(condition?.query).toBe('1=1'); // Always true
413
+ });
414
+ });
415
+ });