feat(notification): Handle long running transaction and add status support (#8900)
RESOLVES FRMW-2110 RESOLVES FRMW-2095 **What** - Fix notification module to not retain transactions open while sending notification - Add support for notification status [success, pending, failure]
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
export enum NotificationStatus {
|
||||
PENDING = "pending",
|
||||
SUCCESS = "success",
|
||||
FAILURE = "failure",
|
||||
}
|
||||
@@ -1,2 +1,3 @@
|
||||
export * from "./abstract-notification-provider"
|
||||
export * from "./events"
|
||||
export * from "./common"
|
||||
|
||||
Reference in New Issue
Block a user