@bash-app/bash-common 30.120.1 → 30.121.1
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 +10 -0
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -2304,6 +2304,11 @@ model Exhibitor {
|
|
|
2304
2304
|
tierPricing Json? // For tiered pricing
|
|
2305
2305
|
pricingNotes String? // Additional pricing details or terms
|
|
2306
2306
|
|
|
2307
|
+
// Policy Fields
|
|
2308
|
+
cancellationPolicy String? // Exhibitor cancellation policy
|
|
2309
|
+
paymentTerms String? // Payment terms and conditions
|
|
2310
|
+
setupRequirements String? // Setup and breakdown requirements
|
|
2311
|
+
|
|
2307
2312
|
crowdSize AmountOfGuests? @relation(fields: [crowdSizeId], references: [id], onDelete: Cascade)
|
|
2308
2313
|
serviceRange ServiceRange? @relation(fields: [serviceRangeId], references: [id])
|
|
2309
2314
|
service Service?
|
|
@@ -2326,6 +2331,11 @@ model Sponsor {
|
|
|
2326
2331
|
tierPricing Json? // For tiered pricing: [{name: "Bronze", priceCents: 100000}, ...]
|
|
2327
2332
|
pricingNotes String? // Additional pricing details or terms
|
|
2328
2333
|
|
|
2334
|
+
// Policy Fields
|
|
2335
|
+
cancellationPolicy String? // Sponsorship cancellation and refund policy
|
|
2336
|
+
contractTerms String? // Contract terms and conditions
|
|
2337
|
+
paymentTerms String? // Payment terms and requirements
|
|
2338
|
+
|
|
2329
2339
|
service Service?
|
|
2330
2340
|
crowdSize AmountOfGuests? @relation(fields: [crowdSizeId], references: [id])
|
|
2331
2341
|
serviceRange ServiceRange? @relation(fields: [serviceRangeId], references: [id])
|