@lautmaler/crm-connectors
Version:
Provides connectors to various CRM systems and calendar services.
11 lines • 602 B
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";
//# sourceMappingURL=crm.types.d.ts.map