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 | import api from './api'
import type { Category, CreateCategoryRequest } from '../types'
export const categoryService = {
getAll(listId: string): Promise<Category[]> {
return api.get<Category[]>(`/lists/${listId}/categories`).then(r => r.data)
},
create(listId: string, req: CreateCategoryRequest): Promise<Category> {
return api.post<Category>(`/lists/${listId}/categories`, req).then(r => r.data)
},
update(listId: string, categoryId: string, req: CreateCategoryRequest): Promise<Category> {
return api.put<Category>(`/lists/${listId}/categories/${categoryId}`, req).then(r => r.data)
},
delete(listId: string, categoryId: string): Promise<void> {
return api.delete(`/lists/${listId}/categories/${categoryId}`).then(() => undefined)
},
}
|