import type { ApiClient } from "@promobase/sdk-runtime"; export interface WebsiteCreativeInfoFields { id: string; image_urls: string[]; link_url: string; } export function websiteCreativeInfoNode(client: ApiClient, id: string) { return { __path: id, __brand: undefined as unknown as WebsiteCreativeInfoFields, get: (opts: { fields: F; params?: Record }) => client.get>(`${id}`, opts), }; }