update new api reques and response

This commit is contained in:
Samandar Turgunboyev
2025-12-05 17:47:11 +05:00
parent 21725762c6
commit db6bfa7e40
30 changed files with 1755 additions and 262 deletions

View File

@@ -0,0 +1,21 @@
import type { SupportListRes } from "@/features/support/lib/data";
import httpClient from "@/shared/config/api/httpClient";
import { SUPPORT } from "@/shared/config/api/URLs";
import type { AxiosResponse } from "axios";
export const support_api = {
async list(): Promise<AxiosResponse<SupportListRes>> {
const res = await httpClient.get(`${SUPPORT}list/`);
return res;
},
async send(body: {
district_id?: number;
problem: string;
date: string;
type: "PROBLEM" | "HELP";
}) {
const res = await httpClient.post(`${SUPPORT}send/`, body);
return res;
},
};