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.
- 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 +0 -7
- 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/controller/otp.controller.d.ts +2 -1
- package/dist/module/notification/controller/otp.controller.js +2 -2
- package/dist/module/notification/controller/otp.controller.js.map +1 -1
- 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 +7 -4
- 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/notification/service/otp.service.d.ts +2 -1
- package/dist/module/notification/service/otp.service.js +8 -3
- package/dist/module/notification/service/otp.service.js.map +1 -1
- package/dist/module/user/controller/login.controller.js +16 -4
- package/dist/module/user/controller/login.controller.js.map +1 -1
- package/dist/module/user/controller/user.controller.d.ts +1 -9
- package/dist/module/user/controller/user.controller.js +10 -4
- package/dist/module/user/controller/user.controller.js.map +1 -1
- package/dist/module/user/entity/user.entity.d.ts +1 -0
- package/dist/module/user/entity/user.entity.js +4 -0
- package/dist/module/user/entity/user.entity.js.map +1 -1
- package/dist/module/user/service/login.service.d.ts +17 -3
- package/dist/module/user/service/login.service.js +14 -5
- package/dist/module/user/service/login.service.js.map +1 -1
- package/dist/module/user/service/user.service.d.ts +7 -10
- package/dist/module/user/service/user.service.js +23 -8
- package/dist/module/user/service/user.service.js.map +1 -1
- 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 +4 -1
- package/dist/module/workflow/service/task.service.js +46 -2
- package/dist/module/workflow/service/task.service.js.map +1 -1
- package/dist/module/workflow/workflow.module.js +2 -0
- package/dist/module/workflow/workflow.module.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 +0 -12
- 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/controller/otp.controller.ts +3 -2
- 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 +7 -4
- package/src/module/notification/service/firebase.service.ts +31 -0
- package/src/module/notification/service/otp.service.ts +9 -3
- package/src/module/user/controller/login.controller.ts +26 -11
- package/src/module/user/controller/user.controller.ts +7 -2
- package/src/module/user/entity/user.entity.ts +3 -0
- package/src/module/user/service/login.service.ts +24 -8
- package/src/module/user/service/user.service.ts +32 -6
- 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 +56 -0
- package/src/module/workflow/workflow.module.ts +2 -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.