mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-16 21:58:40 +00:00
37 lines
914 B
TypeScript
37 lines
914 B
TypeScript
import { BaseAPI, route } from '../base';
|
|
import { Item } from './items';
|
|
import { Details, OutType, Results } from './types';
|
|
|
|
export type LabelCreate = Details & {
|
|
color: string;
|
|
};
|
|
|
|
export type LabelUpdate = LabelCreate;
|
|
|
|
export type Label = LabelCreate &
|
|
OutType & {
|
|
groupId: string;
|
|
items: Item[];
|
|
};
|
|
|
|
export class LabelsApi extends BaseAPI {
|
|
async getAll() {
|
|
return this.http.get<Results<Label>>({ url: route('/labels') });
|
|
}
|
|
|
|
async create(body: LabelCreate) {
|
|
return this.http.post<LabelCreate, Label>({ url: route('/labels'), body });
|
|
}
|
|
|
|
async get(id: string) {
|
|
return this.http.get<Label>({ url: route(`/labels/${id}`) });
|
|
}
|
|
|
|
async delete(id: string) {
|
|
return this.http.delete<void>({ url: route(`/labels/${id}`) });
|
|
}
|
|
|
|
async update(id: string, body: LabelUpdate) {
|
|
return this.http.put<LabelUpdate, Label>({ url: route(`/labels/${id}`), body });
|
|
}
|
|
}
|