feat: add Bounced status to Bills and Rent notification enums

This commit is contained in:
Knee Cola
2026-01-06 13:14:15 +01:00
parent 17fd9ea54c
commit 5dc78cfcaf

View File

@@ -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 */