[
new DiscountItems({
include: {
collection_includes: "promo_60-off"
},regular_priced_only: true,
discount: new PercentageDiscount(60),message: "FLASH SALE: 60% OFF!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "60% OFF",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_20-off"
},regular_priced_only: true,
discount: new PercentageDiscount(20),message: "NOW 20% OFF!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "20% OFF NEW FALL",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),]