"use client"; import axiosInstance from "@/app/(main)/axios/axiosInstance"; import { NEXT_PUBLIC_API_URL } from "@/config/api"; export interface BomScoreRecalcResponse { updatedCount: number; } export const recalcBomScoresClient = async (): Promise => { const response = await axiosInstance.post( `${NEXT_PUBLIC_API_URL}/bom/scores/recalculate`, ); return response.data; };