export type meetingLocation = "Office" | "Online";
export type appointmentType = "Consultation" | "Follow-up" | "Demo" | "Meeting";
export type appointmentStatus =
  | "Scheduled"
  | "Rescheduled"
  | "Completed"
  | "Cancelled";
export type virtualMeetingService = "Zoom" | "Google Meet" | "Teams";
export type meetingNotes = string;
export type meetingTitle = string;
export type meetingExternalLink = string;
export type timestamp = string;
export type contactName = string;
export type SupportedBackends =
  | "Hubspot"
  | "Salesforce"
  | "Calendly"
  | "Outlook"
  | "Google";
