import { apiEndpoints } from "@/lib/api/endpoints"; import { fetchWithAuth } from "@/lib/auth/client"; import type { NotificationsResponse } from "@/types/api"; export async function listPlatformNotifications( params: Record = {}, ) { return fetchWithAuth(apiEndpoints.notifications.superAdmin(params)); }