/** * Whether the copilot panel can run for this merchant. * * The copilot itself is open on every plan: it is how a merchant gets through * setup, and gating the whole of it left a content-only site with no way past * the products import. The $109 Scaling bar sits on the Company ID work it * does for them (the reads and the push), enforced by the agent per action. * * @param clientId - The merchant's Recomaze client id (needed to authenticate). * @return True when the copilot panel should render. */ export function isCopilotEnabled(clientId?: string | null): boolean { return Boolean(clientId); }