rez_core 2.2.11 → 2.2.12

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 (50) hide show
  1. package/dist/constant/global.constant.d.ts +1 -0
  2. package/dist/constant/global.constant.js +2 -1
  3. package/dist/constant/global.constant.js.map +1 -1
  4. package/dist/module/notification/controller/otp.controller.d.ts +4 -1
  5. package/dist/module/notification/controller/otp.controller.js +17 -3
  6. package/dist/module/notification/controller/otp.controller.js.map +1 -1
  7. package/dist/module/notification/notification.module.js +33 -4
  8. package/dist/module/notification/notification.module.js.map +1 -1
  9. package/dist/module/notification/service/email.service.d.ts +7 -0
  10. package/dist/module/notification/service/email.service.js +49 -0
  11. package/dist/module/notification/service/email.service.js.map +1 -0
  12. package/dist/module/workflow/controller/action-category.controller.d.ts +6 -0
  13. package/dist/module/workflow/controller/action-category.controller.js +14 -0
  14. package/dist/module/workflow/controller/action-category.controller.js.map +1 -1
  15. package/dist/module/workflow/controller/action-resource-mapping.controller.d.ts +5 -0
  16. package/dist/module/workflow/controller/action-resource-mapping.controller.js +31 -0
  17. package/dist/module/workflow/controller/action-resource-mapping.controller.js.map +1 -0
  18. package/dist/module/workflow/controller/action.controller.d.ts +3 -0
  19. package/dist/module/workflow/entity/action-category.entity.d.ts +3 -0
  20. package/dist/module/workflow/entity/action-category.entity.js +12 -0
  21. package/dist/module/workflow/entity/action-category.entity.js.map +1 -1
  22. package/dist/module/workflow/entity/action-resources-mapping.entity.d.ts +7 -0
  23. package/dist/module/workflow/entity/action-resources-mapping.entity.js +39 -0
  24. package/dist/module/workflow/entity/action-resources-mapping.entity.js.map +1 -0
  25. package/dist/module/workflow/repository/action.repository.d.ts +3 -0
  26. package/dist/module/workflow/repository/action.repository.js +28 -3
  27. package/dist/module/workflow/repository/action.repository.js.map +1 -1
  28. package/dist/module/workflow/repository/task.repository.js +1 -0
  29. package/dist/module/workflow/repository/task.repository.js.map +1 -1
  30. package/dist/module/workflow/service/action-category.service.d.ts +4 -0
  31. package/dist/module/workflow/service/action-category.service.js +12 -0
  32. package/dist/module/workflow/service/action-category.service.js.map +1 -1
  33. package/dist/module/workflow/service/action-resources-mapping.service.d.ts +6 -0
  34. package/dist/module/workflow/service/action-resources-mapping.service.js +27 -0
  35. package/dist/module/workflow/service/action-resources-mapping.service.js.map +1 -0
  36. package/dist/module/workflow/service/action.service.d.ts +3 -0
  37. package/dist/tsconfig.build.tsbuildinfo +1 -1
  38. package/package.json +5 -1
  39. package/src/constant/global.constant.ts +1 -0
  40. package/src/module/notification/controller/otp.controller.ts +41 -14
  41. package/src/module/notification/notification.module.ts +33 -4
  42. package/src/module/notification/service/email.service.ts +39 -0
  43. package/src/module/workflow/controller/action-category.controller.ts +14 -0
  44. package/src/module/workflow/controller/action-resource-mapping.controller.ts +23 -0
  45. package/src/module/workflow/entity/action-category.entity.ts +9 -0
  46. package/src/module/workflow/entity/action-resources-mapping.entity.ts +23 -0
  47. package/src/module/workflow/repository/action.repository.ts +39 -7
  48. package/src/module/workflow/repository/task.repository.ts +1 -0
  49. package/src/module/workflow/service/action-category.service.ts +20 -0
  50. package/src/module/workflow/service/action-resources-mapping.service.ts +10 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"action-resources-mapping.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/action-resources-mapping.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,gGAAwF;AACxF,qCAAqC;AAG9B,IAAM,6BAA6B,GAAnC,MAAM,6BAA8B,SAAQ,+CAAiB;IAClE,YAA6B,UAAsB;QACjD,KAAK,EAAE,CAAC;QADmB,eAAU,GAAV,UAAU,CAAY;IAEnD,CAAC;CACF,CAAA;AAJY,sEAA6B;wCAA7B,6BAA6B;IADzC,IAAA,mBAAU,GAAE;qCAE8B,oBAAU;GADxC,6BAA6B,CAIzC"}
@@ -20,6 +20,9 @@ export declare class ActionService extends EntityServiceImpl {
20
20
  modalName: any;
21
21
  logo: any;
22
22
  name: any;
23
+ reason_code: any;
24
+ default_reason_code: any;
25
+ is_default: boolean;
23
26
  is_current: any;
24
27
  is_done: any;
25
28
  is_mandatory: any;