emails for rental cancelation, rental declined, rental request confirmation, payout received

This commit is contained in:
jackiettran
2025-10-27 13:07:02 -04:00
parent 407c69aa22
commit 502d84a741
17 changed files with 2690 additions and 45 deletions

View File

@@ -110,10 +110,12 @@ export interface Rental {
status:
| "pending"
| "confirmed"
| "declined"
| "active"
| "completed"
| "cancelled"
| "returned_late"
| "returned_late_and_damaged"
| "damaged"
| "lost";
paymentStatus: "pending" | "paid" | "refunded";
@@ -135,7 +137,7 @@ export interface Rental {
notes?: string;
rating?: number;
review?: string;
rejectionReason?: string;
declineReason?: string;
// New review fields
itemRating?: number;
itemReview?: string;