import type { RegionListRes } from "@/features/region/lib/data"; import httpClient from "@/shared/config/api/httpClient"; import { API_URLS } from "@/shared/config/api/URLs"; import type { AxiosResponse } from "axios"; export const region_api = { async list(params: { limit?: number; offset?: number; name?: string; }): Promise> { return await httpClient.get(`${API_URLS.REGIONS}list/`, { params }); }, async create(body: { name: string }) { const res = await httpClient.post(`${API_URLS.REGIONS}create/`, body); return res; }, async update({ body, id }: { id: number; body: { name: string } }) { const res = await httpClient.patch( `${API_URLS.REGIONS}${id}/update/`, body, ); return res; }, async delete(id: number) { const res = await httpClient.delete(`${API_URLS.REGIONS}${id}/delete/`); return res; }, };