@lautmaler/crm-connectors
Version:
Provides connectors to various CRM systems and calendar services.
20 lines (19 loc) • 585 B
text/typescript
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";