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.
- package/dist/app.module.js +2 -0
- package/dist/app.module.js.map +1 -1
- package/dist/module/communication/controller/communication.controller.d.ts +4 -1
- package/dist/module/communication/controller/communication.controller.js +23 -3
- package/dist/module/communication/controller/communication.controller.js.map +1 -1
- package/dist/module/communication/entity/communication-config.entity.js +1 -1
- package/dist/module/communication/entity/communication-config.entity.js.map +1 -1
- package/dist/module/communication/entity/communication-hub.entity.js +1 -1
- package/dist/module/communication/entity/communication-hub.entity.js.map +1 -1
- package/dist/module/communication/service/communication.service.d.ts +5 -1
- package/dist/module/communication/service/communication.service.js +13 -3
- package/dist/module/communication/service/communication.service.js.map +1 -1
- package/dist/module/communication/strategies/email/gmail-api.strategy.d.ts +3 -0
- package/dist/module/communication/strategies/email/gmail-api.strategy.js +33 -12
- package/dist/module/communication/strategies/email/gmail-api.strategy.js.map +1 -1
- package/dist/module/communication/strategies/gmail.strategy.d.ts +3 -0
- package/dist/module/communication/strategies/gmail.strategy.js +17 -7
- package/dist/module/communication/strategies/gmail.strategy.js.map +1 -1
- package/dist/module/listmaster/service/list-master.service.js +1 -10
- package/dist/module/listmaster/service/list-master.service.js.map +1 -1
- package/dist/module/meta/service/entity-service-impl.service.js +0 -1
- package/dist/module/meta/service/entity-service-impl.service.js.map +1 -1
- package/dist/module/notification/controller/notification.controller.d.ts +17 -0
- package/dist/module/notification/controller/notification.controller.js +48 -0
- package/dist/module/notification/controller/notification.controller.js.map +1 -0
- package/dist/module/notification/entity/notification.entity.d.ts +8 -0
- package/dist/module/notification/entity/notification.entity.js +41 -0
- package/dist/module/notification/entity/notification.entity.js.map +1 -0
- package/dist/module/notification/firebase-admin.config.d.ts +2 -0
- package/dist/module/notification/firebase-admin.config.js +10 -0
- package/dist/module/notification/firebase-admin.config.js.map +1 -0
- package/dist/module/notification/firebase-admin.json +13 -0
- package/dist/module/notification/notification.module.js +6 -3
- package/dist/module/notification/notification.module.js.map +1 -1
- package/dist/module/notification/service/firebase.service.d.ts +11 -0
- package/dist/module/notification/service/firebase.service.js +40 -0
- package/dist/module/notification/service/firebase.service.js.map +1 -0
- package/dist/module/workflow/entity/task-data.entity.d.ts +2 -0
- package/dist/module/workflow/entity/task-data.entity.js +9 -1
- package/dist/module/workflow/entity/task-data.entity.js.map +1 -1
- package/dist/module/workflow/repository/task.repository.js +6 -1
- package/dist/module/workflow/repository/task.repository.js.map +1 -1
- package/dist/module/workflow/service/task.service.d.ts +1 -0
- package/dist/module/workflow/service/task.service.js +40 -0
- package/dist/module/workflow/service/task.service.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +4 -1
- package/src/app.module.ts +2 -0
- package/src/module/communication/controller/communication.controller.ts +19 -1
- package/src/module/communication/entity/communication-config.entity.ts +1 -1
- package/src/module/communication/entity/communication-hub.entity.ts +1 -1
- package/src/module/communication/service/communication.service.ts +21 -2
- package/src/module/communication/strategies/email/gmail-api.strategy.ts +37 -13
- package/src/module/communication/strategies/gmail.strategy.ts +15 -9
- package/src/module/listmaster/service/list-master.service.ts +1 -15
- package/src/module/meta/service/entity-service-impl.service.ts +0 -1
- package/src/module/notification/controller/notification.controller.ts +25 -0
- package/src/module/notification/entity/notification.entity.ts +20 -0
- package/src/module/notification/firebase-admin.config.ts +8 -0
- package/src/module/notification/firebase-admin.json +13 -0
- package/src/module/notification/notification.module.ts +6 -3
- package/src/module/notification/service/firebase.service.ts +31 -0
- package/src/module/workflow/entity/task-data.entity.ts +7 -1
- package/src/module/workflow/repository/task.repository.ts +10 -2
- package/src/module/workflow/service/task.service.ts +49 -0
- 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.