import axiosInstance from "./api";
import { apiUrl } from "./endpoints";
import { UserPreferences } from "../types/preferences";

export const savePreferencesApi = async (
  payload: UserPreferences
) => {
  const res = await axiosInstance.post(
    apiUrl.savePreferences,
    payload
  );

  return res.data;
};