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 */
|
/** Bills notification has been sent */
|
||||||
Sent = "sent",
|
Sent = "sent",
|
||||||
/** Sending of bills notification failed */
|
/** Sending of bills notification failed */
|
||||||
Failed = "failed"
|
Failed = "failed",
|
||||||
|
/** Email to tenant has bounced (set by webhook) */
|
||||||
|
Bounced = "bounced"
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum RentNotificationStatus {
|
export enum RentNotificationStatus {
|
||||||
/** notification has been sent */
|
/** notification has been sent */
|
||||||
Sent = "sent",
|
Sent = "sent",
|
||||||
/** Sending of notification failed */
|
/** 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 */
|
/** bill object in the form returned by MongoDB */
|
||||||
|
|||||||
Reference in New Issue
Block a user