Rename venues to Commons Hub and Herrnhof Villa, match CCG/VotC IDs

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-20 13:11:22 -07:00
parent ca8f786fb0
commit 8b3ecd48c2
1 changed files with 26 additions and 26 deletions

View File

@ -67,48 +67,48 @@ export interface AccommodationVenue {
export const ACCOMMODATION_VENUES: AccommodationVenue[] = [ export const ACCOMMODATION_VENUES: AccommodationVenue[] = [
{ {
key: "venue-a", key: "commons-hub",
name: "Venue A", name: "Commons Hub",
description: "TBD — Primary event venue accommodation.", description: "Primary event venue — shared and double rooms available.",
options: [ options: [
{ {
id: "va-shared", id: "ch-multi",
label: "Bed in shared room", label: "Bed in shared room",
price: 312, price: 312,
nightlyRate: 39, nightlyRate: 39,
venue: "Venue A", venue: "Commons Hub",
venueKey: "venue-a", venueKey: "commons-hub",
}, },
{ {
id: "va-double", id: "ch-double",
label: "Bed in double room", label: "Bed in double room",
price: 400, price: 400,
nightlyRate: 50, nightlyRate: 50,
venue: "Venue A", venue: "Commons Hub",
venueKey: "venue-a", venueKey: "commons-hub",
}, },
], ],
}, },
{ {
key: "venue-b", key: "herrnhof",
name: "Venue B", name: "Herrnhof Villa",
description: "TBD — Secondary accommodation option.", description: "Nearby villa with single and double room options.",
options: [ options: [
{ {
id: "vb-single", id: "hh-single",
label: "Single room", label: "Single room",
price: 760, price: 760,
nightlyRate: 95, nightlyRate: 95,
venue: "Venue B", venue: "Herrnhof Villa",
venueKey: "venue-b", venueKey: "herrnhof",
}, },
{ {
id: "vb-double", id: "hh-double",
label: "Double room (per person)", label: "Double room (per person)",
price: 400, price: 400,
nightlyRate: 50, nightlyRate: 50,
venue: "Venue B", venue: "Herrnhof Villa",
venueKey: "venue-b", venueKey: "herrnhof",
}, },
], ],
}, },
@ -135,20 +135,20 @@ export interface BookingCriteria {
* Update this when you configure the actual booking spreadsheet. * Update this when you configure the actual booking spreadsheet.
*/ */
export const BOOKING_CRITERIA: Record<string, BookingCriteria> = { export const BOOKING_CRITERIA: Record<string, BookingCriteria> = {
"va-shared": { "ch-multi": {
venue: "Venue A", venue: "Commons Hub",
bedTypes: ["bunk up", "bunk down", "single"], bedTypes: ["bunk up", "bunk down", "single"],
}, },
"va-double": { "ch-double": {
venue: "Venue A", venue: "Commons Hub",
bedTypes: ["double", "double (shared)"], bedTypes: ["double", "double (shared)"],
}, },
"vb-single": { "hh-single": {
venue: "Venue B", venue: "Herrnhof Villa",
bedTypes: ["double"], bedTypes: ["double"],
}, },
"vb-double": { "hh-double": {
venue: "Venue B", venue: "Herrnhof Villa",
bedTypes: ["single", "double (shared)"], bedTypes: ["single", "double (shared)"],
}, },
} }