23 lines
635 B
TypeScript
23 lines
635 B
TypeScript
import type { LoginData, MeData } from "@/shared/config/api/auth/auth.model";
|
|
import httpClient from "@/shared/config/api/httpClient";
|
|
import { AUTH_LOGIN, GET_ME } from "@/shared/config/api/URLs";
|
|
import type { AxiosResponse } from "axios";
|
|
|
|
const authLogin = async ({
|
|
phone,
|
|
password,
|
|
}: {
|
|
phone: string;
|
|
password: string;
|
|
}): Promise<AxiosResponse<LoginData>> => {
|
|
const response = await httpClient.post(AUTH_LOGIN, { phone, password });
|
|
return response;
|
|
};
|
|
|
|
const getMe = async (): Promise<AxiosResponse<MeData>> => {
|
|
const response = await httpClient.get(GET_ME);
|
|
return response;
|
|
};
|
|
|
|
export { authLogin, getMe };
|