UNPKG

skailan-crm

Version:

Servicio de CRM y gestión de ventas para Skailan

11 lines 1.24 kB
import { Request, Response } from "express"; export declare const createLead: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const getLeadById: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const listLeads: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const updateLead: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const deleteLead: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const sendLeadFollowUpEmail: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const startConversationWithLead: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const getLeadSummaryByStatus: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; export declare const syncLeadWithContact: (req: Request, res: Response) => Promise<Response<any, Record<string, any>> | undefined>; //# sourceMappingURL=leadController.d.ts.map