From 8b3ecd48c27421e46b1ed8e60cfb03b44f21db66 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 20 Mar 2026 13:11:22 -0700 Subject: [PATCH] Rename venues to Commons Hub and Herrnhof Villa, match CCG/VotC IDs Co-Authored-By: Claude Opus 4.6 --- lib/event.config.ts | 52 ++++++++++++++++++++++----------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/lib/event.config.ts b/lib/event.config.ts index 156d200..427a679 100644 --- a/lib/event.config.ts +++ b/lib/event.config.ts @@ -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 = { - "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)"], }, }