@bash-app/bash-common 30.147.0 → 30.149.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 +7 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -5722,6 +5722,12 @@ enum BirthdayFreebieExpirationType {
|
|
|
5722
5722
|
Valid30Days
|
|
5723
5723
|
}
|
|
5724
5724
|
|
|
5725
|
+
enum BirthdayOfferQualityTier {
|
|
5726
|
+
Awesome
|
|
5727
|
+
Okay
|
|
5728
|
+
Lame
|
|
5729
|
+
}
|
|
5730
|
+
|
|
5725
5731
|
enum BirthdayFreebieSource {
|
|
5726
5732
|
Partner
|
|
5727
5733
|
Suggestion
|
|
@@ -5757,6 +5763,7 @@ model BirthdayFreebieCatalog {
|
|
|
5757
5763
|
sourceUrl String? @db.Text // Optional: reference source (e.g. NerdWallet, Krazy Coupon Lady)
|
|
5758
5764
|
appRequired Boolean @default(false)
|
|
5759
5765
|
priority Int @default(0) // Tie-break sort
|
|
5766
|
+
qualityTier BirthdayOfferQualityTier? // Awesome / Okay / Lame — set by super users on approve
|
|
5760
5767
|
address String? @db.Text // For Maps and display
|
|
5761
5768
|
redemptionNotes String? @db.Text // Conditions, limitations
|
|
5762
5769
|
createdAt DateTime @default(now())
|