@bash-app/bash-common 30.197.0 → 30.199.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prisma/schema.prisma +4 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -6008,6 +6008,8 @@ model BirthdayDealSuggestion {
|
|
|
6008
6008
|
linkUrl String? @db.Text
|
|
6009
6009
|
suggestedQualityTier BirthdayOfferQualityTier? // Suggester's experience: Awesome, Okay, or Lame
|
|
6010
6010
|
signupDaysInAdvance Int? // When requiresAdvanceSignup: how many days before birthday
|
|
6011
|
+
/// User-selected expiration hint while the suggestion is pending (mirrors catalog enum)
|
|
6012
|
+
suggestedExpirationType BirthdayFreebieExpirationType?
|
|
6011
6013
|
status BirthdayDealSuggestionStatus @default(Pending)
|
|
6012
6014
|
createdAt DateTime @default(now())
|
|
6013
6015
|
reviewedAt DateTime?
|
|
@@ -6029,6 +6031,8 @@ enum BirthdayFreebieExpirationType {
|
|
|
6029
6031
|
DayOf
|
|
6030
6032
|
Valid30Days
|
|
6031
6033
|
ValidDays
|
|
6034
|
+
/// No stated end to the redemption window (e.g. ongoing club perk)
|
|
6035
|
+
NeverExpires
|
|
6032
6036
|
}
|
|
6033
6037
|
|
|
6034
6038
|
enum BirthdayOfferQualityTier {
|