@bash-app/bash-common 30.224.0 → 30.225.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 +24 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -7758,6 +7758,30 @@ model PartnerAdSlot {
|
|
|
7758
7758
|
@@index([brandId])
|
|
7759
7759
|
}
|
|
7760
7760
|
|
|
7761
|
+
/// Inbound partner listing requests (bash.community/store).
|
|
7762
|
+
enum PartnerInquiryStatus {
|
|
7763
|
+
Pending
|
|
7764
|
+
Reviewed
|
|
7765
|
+
Approved
|
|
7766
|
+
Rejected
|
|
7767
|
+
}
|
|
7768
|
+
|
|
7769
|
+
model PartnerInquiry {
|
|
7770
|
+
id String @id @default(cuid())
|
|
7771
|
+
contactName String
|
|
7772
|
+
email String
|
|
7773
|
+
brandName String
|
|
7774
|
+
website String?
|
|
7775
|
+
description String @db.Text
|
|
7776
|
+
categories String[]
|
|
7777
|
+
status PartnerInquiryStatus @default(Pending)
|
|
7778
|
+
adminNote String? @db.Text
|
|
7779
|
+
createdAt DateTime @default(now())
|
|
7780
|
+
updatedAt DateTime @updatedAt
|
|
7781
|
+
|
|
7782
|
+
@@index([status, createdAt])
|
|
7783
|
+
}
|
|
7784
|
+
|
|
7761
7785
|
// ============================================
|
|
7762
7786
|
// EVENT VANITY PATHS
|
|
7763
7787
|
// ============================================
|