export function useShipmentService() {
  const { apiFetch } = useApi()

  return {
    getHistoryById(id: number) {
      return apiFetch('/shipments/history', {
        method: 'POST',
        body: { order_ids: id },
      })
    },
  }
}
