···338338}
339339340340/**
341341+ * Get a single meeting time by ID
342342+ */
343343+export function getMeetingById(meetingId: string): MeetingTime | null {
344344+ const result = db
345345+ .query<MeetingTime, [string]>("SELECT * FROM meeting_times WHERE id = ?")
346346+ .get(meetingId);
347347+ return result ?? null;
348348+}
349349+350350+/**
341351 * Update a meeting time label
342352 */
343353export function updateMeetingTime(meetingId: string, label: string): void {