rez_core 2.2.166 → 2.2.168

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 (66) hide show
  1. package/dist/app.module.js +2 -0
  2. package/dist/app.module.js.map +1 -1
  3. package/dist/module/communication/controller/communication.controller.d.ts +4 -1
  4. package/dist/module/communication/controller/communication.controller.js +23 -3
  5. package/dist/module/communication/controller/communication.controller.js.map +1 -1
  6. package/dist/module/communication/entity/communication-config.entity.js +1 -1
  7. package/dist/module/communication/entity/communication-config.entity.js.map +1 -1
  8. package/dist/module/communication/entity/communication-hub.entity.js +1 -1
  9. package/dist/module/communication/entity/communication-hub.entity.js.map +1 -1
  10. package/dist/module/communication/service/communication.service.d.ts +5 -1
  11. package/dist/module/communication/service/communication.service.js +13 -3
  12. package/dist/module/communication/service/communication.service.js.map +1 -1
  13. package/dist/module/communication/strategies/email/gmail-api.strategy.d.ts +3 -0
  14. package/dist/module/communication/strategies/email/gmail-api.strategy.js +33 -12
  15. package/dist/module/communication/strategies/email/gmail-api.strategy.js.map +1 -1
  16. package/dist/module/communication/strategies/gmail.strategy.d.ts +3 -0
  17. package/dist/module/communication/strategies/gmail.strategy.js +17 -7
  18. package/dist/module/communication/strategies/gmail.strategy.js.map +1 -1
  19. package/dist/module/listmaster/service/list-master.service.js +1 -10
  20. package/dist/module/listmaster/service/list-master.service.js.map +1 -1
  21. package/dist/module/meta/service/entity-service-impl.service.js +0 -1
  22. package/dist/module/meta/service/entity-service-impl.service.js.map +1 -1
  23. package/dist/module/notification/controller/notification.controller.d.ts +17 -0
  24. package/dist/module/notification/controller/notification.controller.js +48 -0
  25. package/dist/module/notification/controller/notification.controller.js.map +1 -0
  26. package/dist/module/notification/entity/notification.entity.d.ts +8 -0
  27. package/dist/module/notification/entity/notification.entity.js +41 -0
  28. package/dist/module/notification/entity/notification.entity.js.map +1 -0
  29. package/dist/module/notification/firebase-admin.config.d.ts +2 -0
  30. package/dist/module/notification/firebase-admin.config.js +10 -0
  31. package/dist/module/notification/firebase-admin.config.js.map +1 -0
  32. package/dist/module/notification/firebase-admin.json +13 -0
  33. package/dist/module/notification/notification.module.js +6 -3
  34. package/dist/module/notification/notification.module.js.map +1 -1
  35. package/dist/module/notification/service/firebase.service.d.ts +11 -0
  36. package/dist/module/notification/service/firebase.service.js +40 -0
  37. package/dist/module/notification/service/firebase.service.js.map +1 -0
  38. package/dist/module/workflow/entity/task-data.entity.d.ts +2 -0
  39. package/dist/module/workflow/entity/task-data.entity.js +9 -1
  40. package/dist/module/workflow/entity/task-data.entity.js.map +1 -1
  41. package/dist/module/workflow/repository/task.repository.js +6 -1
  42. package/dist/module/workflow/repository/task.repository.js.map +1 -1
  43. package/dist/module/workflow/service/task.service.d.ts +1 -0
  44. package/dist/module/workflow/service/task.service.js +40 -0
  45. package/dist/module/workflow/service/task.service.js.map +1 -1
  46. package/dist/tsconfig.build.tsbuildinfo +1 -1
  47. package/package.json +4 -1
  48. package/src/app.module.ts +2 -0
  49. package/src/module/communication/controller/communication.controller.ts +19 -1
  50. package/src/module/communication/entity/communication-config.entity.ts +1 -1
  51. package/src/module/communication/entity/communication-hub.entity.ts +1 -1
  52. package/src/module/communication/service/communication.service.ts +21 -2
  53. package/src/module/communication/strategies/email/gmail-api.strategy.ts +37 -13
  54. package/src/module/communication/strategies/gmail.strategy.ts +15 -9
  55. package/src/module/listmaster/service/list-master.service.ts +1 -15
  56. package/src/module/meta/service/entity-service-impl.service.ts +0 -1
  57. package/src/module/notification/controller/notification.controller.ts +25 -0
  58. package/src/module/notification/entity/notification.entity.ts +20 -0
  59. package/src/module/notification/firebase-admin.config.ts +8 -0
  60. package/src/module/notification/firebase-admin.json +13 -0
  61. package/src/module/notification/notification.module.ts +6 -3
  62. package/src/module/notification/service/firebase.service.ts +31 -0
  63. package/src/module/workflow/entity/task-data.entity.ts +7 -1
  64. package/src/module/workflow/repository/task.repository.ts +10 -2
  65. package/src/module/workflow/service/task.service.ts +49 -0
  66. package/tsconfig.json +5 -4

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.