feat: add Bounced status to Bills and Rent notification enums
This commit is contained in:
@@ -62,14 +62,18 @@ export enum BillsNotificationStatus {
|
||||
/** Bills notification has been sent */
|
||||
Sent = "sent",
|
||||
/** Sending of bills notification failed */
|
||||
Failed = "failed"
|
||||
Failed = "failed",
|
||||
/** Email to tenant has bounced (set by webhook) */
|
||||
Bounced = "bounced"
|
||||
}
|
||||
|
||||
export enum RentNotificationStatus {
|
||||
/** notification has been sent */
|
||||
Sent = "sent",
|
||||
/** Sending of notification failed */
|
||||
Failed = "failed"
|
||||
Failed = "failed",
|
||||
/** Email to tenant has bounced (set by webhook) */
|
||||
Bounced = "bounced"
|
||||
}
|
||||
|
||||
/** bill object in the form returned by MongoDB */
|
||||
|
||||
Reference in New Issue
Block a user