rez_core 2.2.166 → 2.2.169

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 (96) 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 +0 -7
  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/controller/otp.controller.d.ts +2 -1
  27. package/dist/module/notification/controller/otp.controller.js +2 -2
  28. package/dist/module/notification/controller/otp.controller.js.map +1 -1
  29. package/dist/module/notification/entity/notification.entity.d.ts +8 -0
  30. package/dist/module/notification/entity/notification.entity.js +41 -0
  31. package/dist/module/notification/entity/notification.entity.js.map +1 -0
  32. package/dist/module/notification/firebase-admin.config.d.ts +2 -0
  33. package/dist/module/notification/firebase-admin.config.js +10 -0
  34. package/dist/module/notification/firebase-admin.config.js.map +1 -0
  35. package/dist/module/notification/firebase-admin.json +13 -0
  36. package/dist/module/notification/notification.module.js +7 -4
  37. package/dist/module/notification/notification.module.js.map +1 -1
  38. package/dist/module/notification/service/firebase.service.d.ts +11 -0
  39. package/dist/module/notification/service/firebase.service.js +40 -0
  40. package/dist/module/notification/service/firebase.service.js.map +1 -0
  41. package/dist/module/notification/service/otp.service.d.ts +2 -1
  42. package/dist/module/notification/service/otp.service.js +8 -3
  43. package/dist/module/notification/service/otp.service.js.map +1 -1
  44. package/dist/module/user/controller/login.controller.js +16 -4
  45. package/dist/module/user/controller/login.controller.js.map +1 -1
  46. package/dist/module/user/controller/user.controller.d.ts +1 -9
  47. package/dist/module/user/controller/user.controller.js +10 -4
  48. package/dist/module/user/controller/user.controller.js.map +1 -1
  49. package/dist/module/user/entity/user.entity.d.ts +1 -0
  50. package/dist/module/user/entity/user.entity.js +4 -0
  51. package/dist/module/user/entity/user.entity.js.map +1 -1
  52. package/dist/module/user/service/login.service.d.ts +17 -3
  53. package/dist/module/user/service/login.service.js +14 -5
  54. package/dist/module/user/service/login.service.js.map +1 -1
  55. package/dist/module/user/service/user.service.d.ts +7 -10
  56. package/dist/module/user/service/user.service.js +23 -8
  57. package/dist/module/user/service/user.service.js.map +1 -1
  58. package/dist/module/workflow/entity/task-data.entity.d.ts +2 -0
  59. package/dist/module/workflow/entity/task-data.entity.js +9 -1
  60. package/dist/module/workflow/entity/task-data.entity.js.map +1 -1
  61. package/dist/module/workflow/repository/task.repository.js +6 -1
  62. package/dist/module/workflow/repository/task.repository.js.map +1 -1
  63. package/dist/module/workflow/service/task.service.d.ts +4 -1
  64. package/dist/module/workflow/service/task.service.js +46 -2
  65. package/dist/module/workflow/service/task.service.js.map +1 -1
  66. package/dist/module/workflow/workflow.module.js +2 -0
  67. package/dist/module/workflow/workflow.module.js.map +1 -1
  68. package/dist/tsconfig.build.tsbuildinfo +1 -1
  69. package/package.json +4 -1
  70. package/src/app.module.ts +2 -0
  71. package/src/module/communication/controller/communication.controller.ts +19 -1
  72. package/src/module/communication/entity/communication-config.entity.ts +1 -1
  73. package/src/module/communication/entity/communication-hub.entity.ts +1 -1
  74. package/src/module/communication/service/communication.service.ts +21 -2
  75. package/src/module/communication/strategies/email/gmail-api.strategy.ts +37 -13
  76. package/src/module/communication/strategies/gmail.strategy.ts +15 -9
  77. package/src/module/listmaster/service/list-master.service.ts +0 -12
  78. package/src/module/meta/service/entity-service-impl.service.ts +0 -1
  79. package/src/module/notification/controller/notification.controller.ts +25 -0
  80. package/src/module/notification/controller/otp.controller.ts +3 -2
  81. package/src/module/notification/entity/notification.entity.ts +20 -0
  82. package/src/module/notification/firebase-admin.config.ts +8 -0
  83. package/src/module/notification/firebase-admin.json +13 -0
  84. package/src/module/notification/notification.module.ts +7 -4
  85. package/src/module/notification/service/firebase.service.ts +31 -0
  86. package/src/module/notification/service/otp.service.ts +9 -3
  87. package/src/module/user/controller/login.controller.ts +26 -11
  88. package/src/module/user/controller/user.controller.ts +7 -2
  89. package/src/module/user/entity/user.entity.ts +3 -0
  90. package/src/module/user/service/login.service.ts +24 -8
  91. package/src/module/user/service/user.service.ts +32 -6
  92. package/src/module/workflow/entity/task-data.entity.ts +7 -1
  93. package/src/module/workflow/repository/task.repository.ts +10 -2
  94. package/src/module/workflow/service/task.service.ts +56 -0
  95. package/src/module/workflow/workflow.module.ts +2 -0
  96. 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.