export type CheckinMode = 'ON_SITE' | 'ONLINE';

export type AllowedModeSource = 'MEETING_OVERRIDE' | 'SERIES_PREFERENCE' | 'CITY_DERIVED';

export const CHECKIN_ERROR_CODES = {
  WRONG_QR: 'MEETING_ATTENDANCE_033',
  USER_WORK_CITY_MISSING: 'MEETING_ATTENDANCE_034',
  MEETING_CITY_MISSING: 'MEETING_ATTENDANCE_036',
} as const;

export type CheckinErrorCode = (typeof CHECKIN_ERROR_CODES)[keyof typeof CHECKIN_ERROR_CODES];
