TypeScript interfaces for pages
interface ShopifyPage { id: string handle: string title: string body: string bodySummary: string createdAt: string updatedAt: string onlineStoreUrl: string | null seo: ShopifySeo }
shoppy.pages.list()
interface PagesResult { items: ShopifyPage[] pageInfo: ShopifyPageInfo }
.select()
type PageField = | 'id' | 'handle' | 'title' | 'body' | 'bodySummary' | 'createdAt' | 'updatedAt' | 'onlineStoreUrl' | 'seo'