Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | 93x 1x 1x 1x 1x 2x 1x 1x 1x 1x 1x 1x 3x 3x 1x 3x 3x 3x 1x 3x 3x 3x | import { request } from "../../base";
import type {
Lead,
KanbanData,
LeadActivity,
CreateLeadInput,
UpdateLeadInput,
ChangeStageInput,
AddNoteInput,
} from "./types";
export const crmLeadsApi = {
// Leads
async getKanbanData(proId: string) {
return request<KanbanData>(
`/api/pro/${proId}/crm/leads`,
);
},
async getLead(proId: string, leadId: number) {
return request<Lead>(
`/api/pro/${proId}/crm/leads/${leadId}`,
);
},
async createLead(proId: string, data: CreateLeadInput) {
return request<Lead>(`/api/pro/${proId}/crm/leads`, {
method: "POST",
body: data,
});
},
async updateLead(
proId: string,
leadId: number,
data: UpdateLeadInput,
) {
return request<Lead>(
`/api/pro/${proId}/crm/leads/${leadId}`,
{ method: "PATCH", body: data },
);
},
async changeStage(
proId: string,
leadId: number,
data: ChangeStageInput,
) {
return request<Lead>(
`/api/pro/${proId}/crm/leads/${leadId}/stage`,
{ method: "PATCH", body: data },
);
},
async markContacted(
proId: string,
leadId: number,
data: { method: string; noteContent?: string },
) {
return request<Lead>(
`/api/pro/${proId}/crm/leads/${leadId}/contact`,
{ method: "PATCH", body: data },
);
},
async updateQuoteValue(
proId: string,
leadId: number,
valuePaise: number,
) {
return request<Lead>(
`/api/pro/${proId}/crm/leads/${leadId}/quote-value`,
{ method: "PATCH", body: { valuePaise } },
);
},
async updateOrderValue(
proId: string,
leadId: number,
valuePaise: number,
) {
return request<Lead>(
`/api/pro/${proId}/crm/leads/${leadId}/order-value`,
{ method: "PATCH", body: { valuePaise } },
);
},
async archiveLead(proId: string, leadId: number) {
return request<Lead>(
`/api/pro/${proId}/crm/leads/${leadId}/archive`,
{ method: "PATCH" },
);
},
async unarchiveLead(proId: string, leadId: number) {
return request<Lead>(
`/api/pro/${proId}/crm/leads/${leadId}/unarchive`,
{ method: "PATCH" },
);
},
async checkPhone(proId: string, phone: string) {
return request<{ exists: boolean; lead?: Lead }>(
`/api/pro/${proId}/crm/leads/check-phone/${encodeURIComponent(phone)}`,
);
},
async listLeads(
proId: string,
filters: { isArchived?: boolean; page?: number; limit?: number } = {},
) {
const params = new URLSearchParams({ view: "list" });
if (filters.isArchived !== undefined)
params.set("isArchived", String(filters.isArchived));
if (filters.page) params.set("page", String(filters.page));
if (filters.limit) params.set("limit", String(filters.limit));
return request<Lead[]>(`/api/pro/${proId}/crm/leads?${params.toString()}`);
},
// Notes & Activities
async addNote(proId: string, leadId: number, data: AddNoteInput) {
return request<{ activities: { activityType: string }[] }>(
`/api/pro/${proId}/crm/leads/${leadId}/notes`,
{ method: "POST", body: data },
);
},
async getActivities(
proId: string,
leadId: number,
offset = 0,
limit = 30,
) {
const page = Math.floor(offset / limit) + 1;
const response = await request<LeadActivity[]>(
`/api/pro/${proId}/crm/leads/${leadId}/activities?page=${page}&limit=${limit}`,
);
// API returns activities as data array with total in meta
return {
...response,
data: {
activities: response.data || [],
total: response.meta?.total ?? 0,
},
};
},
};
|