import { createClient } from '@/lib/api'const client = createClient({  baseUrl: process.env.NEXT_PUBLIC_API_URL,})// Typed from the Go struct, so a renamed field fails the buildconst { data } = await client.posts.list({ page: 1 })console.log(data.items.length)