payment confirmation for renter after rental request approval, first listing celebration email, removed burstprotection for google places autocomplete, renamed email templates

This commit is contained in:
jackiettran
2025-10-28 22:23:41 -04:00
parent 502d84a741
commit d1cb857aa7
25 changed files with 2171 additions and 53 deletions

View File

@@ -108,6 +108,15 @@ const Rental = sequelize.define("Rental", {
stripePaymentIntentId: {
type: DataTypes.STRING,
},
paymentMethodBrand: {
type: DataTypes.STRING,
},
paymentMethodLast4: {
type: DataTypes.STRING,
},
chargedAt: {
type: DataTypes.DATE,
},
deliveryMethod: {
type: DataTypes.ENUM("pickup", "delivery"),
defaultValue: "pickup",