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