update new api reques and response
This commit is contained in:
21
src/features/distributed/lib/api.ts
Normal file
21
src/features/distributed/lib/api.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import type { DistributedList } from "@/features/distributed/lib/data";
|
||||
import httpClient from "@/shared/config/api/httpClient";
|
||||
import { DISTRIBUTED_CREATE, DISTRIBUTED_LIST } from "@/shared/config/api/URLs";
|
||||
import type { AxiosResponse } from "axios";
|
||||
|
||||
export const distributed_api = {
|
||||
async list(): Promise<AxiosResponse<DistributedList>> {
|
||||
const res = await httpClient.get(DISTRIBUTED_LIST);
|
||||
return res;
|
||||
},
|
||||
|
||||
async create(body: {
|
||||
product_id: number;
|
||||
date: string;
|
||||
employee_name: string;
|
||||
quantity: number;
|
||||
}) {
|
||||
const res = await httpClient.post(DISTRIBUTED_CREATE, body);
|
||||
return res;
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user