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 | 93x 1x 1x 1x 2x 1x 2x 2x 1x 1x 1x | import { request } from "../../base";
import type { PipelineStage, LeadSource } from "./types";
export const crmPipelineApi = {
// Pipeline Stages
async getStages(proId: string) {
return request<PipelineStage[]>(
`/api/pro/${proId}/crm/pipeline-stages`,
);
},
async createStage(proId: string, data: { name: string }) {
return request<PipelineStage>(
`/api/pro/${proId}/crm/pipeline-stages`,
{ method: "POST", body: data },
);
},
async updateStage(
proId: string,
stageId: number,
data: { name: string },
) {
return request<PipelineStage>(
`/api/pro/${proId}/crm/pipeline-stages/${stageId}`,
{ method: "PATCH", body: data },
);
},
async deleteStage(
proId: string,
stageId: number,
reassignToStageId?: number,
) {
return request<{ deleted: true }>(
`/api/pro/${proId}/crm/pipeline-stages/${stageId}`,
{
method: "DELETE",
body: reassignToStageId ? { reassignToStageId } : undefined,
},
);
},
async reorderStages(proId: string, stageIds: number[]) {
return request<PipelineStage[]>(
`/api/pro/${proId}/crm/pipeline-stages/reorder`,
{ method: "PUT", body: { stageIds } },
);
},
// Lead Sources
async getSources(proId: string, includeInactive = false) {
const url = includeInactive
? `/api/pro/${proId}/crm/lead-sources?includeInactive=true`
: `/api/pro/${proId}/crm/lead-sources`;
return request<LeadSource[]>(url);
},
async createSource(proId: string, data: { name: string }) {
return request<LeadSource>(
`/api/pro/${proId}/crm/lead-sources`,
{ method: "POST", body: data },
);
},
async deactivateSource(proId: string, sourceId: number) {
return request<LeadSource>(
`/api/pro/${proId}/crm/lead-sources/${sourceId}/deactivate`,
{ method: "PATCH" },
);
},
async reactivateSource(proId: string, sourceId: number) {
return request<LeadSource>(
`/api/pro/${proId}/crm/lead-sources/${sourceId}/reactivate`,
{ method: "PATCH" },
);
},
};
|