import type { UserCreateReq, UserListRes, UserUpdateReq, } from "@/features/users/lib/data"; import httpClient from "@/shared/config/api/httpClient"; import { USER } from "@/shared/config/api/URLs"; import type { AxiosResponse } from "axios"; export const user_api = { async list(params: { limit?: number; offset?: number; search?: string; is_active?: boolean | string; region_id?: number; }): Promise> { const res = await httpClient.get(`${USER}list/`, { params }); return res; }, async update({ body, id }: { id: number; body: UserUpdateReq }) { const res = await httpClient.patch(`${USER}${id}/update/`, body); return res; }, async create(body: UserCreateReq) { const res = await httpClient.post(`${USER}create/`, body); return res; }, async active(id: number) { const res = await httpClient.post(`${USER}${id}/activate/`); return res; }, async delete({ id }: { id: number }) { const res = await httpClient.delete(`${USER}${id}/delete/`); return res; }, };