import { API_BASE_URL } from "@/helpers/common.helper"; // services import { APIService } from "@/services/api.service"; // types import { IIssueLabel } from "@plane/types"; export class IssueLabelService extends APIService { constructor() { super(API_BASE_URL); } async getWorkspaceIssueLabels(workspaceSlug: string): Promise { return this.get(`/api/workspaces/${workspaceSlug}/labels/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async getProjectLabels(workspaceSlug: string, projectId: string): Promise { return this.get(`/api/workspaces/${workspaceSlug}/projects/${projectId}/issue-labels/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async createIssueLabel(workspaceSlug: string, projectId: string, data: any): Promise { return this.post(`/api/workspaces/${workspaceSlug}/projects/${projectId}/issue-labels/`, data) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async patchIssueLabel(workspaceSlug: string, projectId: string, labelId: string, data: any): Promise { return this.patch(`/api/workspaces/${workspaceSlug}/projects/${projectId}/issue-labels/${labelId}/`, data) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } async deleteIssueLabel(workspaceSlug: string, projectId: string, labelId: string): Promise { return this.delete(`/api/workspaces/${workspaceSlug}/projects/${projectId}/issue-labels/${labelId}/`) .then((response) => response?.data) .catch((error) => { throw error?.response?.data; }); } }