import { BaseAPI, route } from "../base"; import type { LabelCreate, LabelOut } from "../types/data-contracts"; export class LabelsApi extends BaseAPI { getAll() { return this.http.get({ url: route("/labels") }); } create(body: LabelCreate) { return this.http.post({ url: route("/labels"), body }); } get(id: string) { return this.http.get({ url: route(`/labels/${id}`) }); } delete(id: string) { return this.http.delete({ url: route(`/labels/${id}`) }); } update(id: string, body: LabelCreate) { return this.http.put({ url: route(`/labels/${id}`), body }); } }