import { fetchAPI } from "./api-client"; import type { PartnerValue } from "@/types/wagtail"; /** 获取合作伙伴/客户 Logo 列表(apps.core.Partner Snippet)。 */ export async function getPartners(): Promise { const res = await fetchAPI<{ items: PartnerValue[] }>( "/api/v1/custom/core/partners/", { tags: ["partners"] }, ); return res.items; }