import type { ApiClient } from "@promobase/sdk-runtime"; export interface ProductFeedUploadErrorSampleFields { id: string; retailer_id: string; row_number: number; } export function productFeedUploadErrorSampleNode(client: ApiClient, id: string) { return { __path: id, __brand: undefined as unknown as ProductFeedUploadErrorSampleFields, get: (opts: { fields: F; params?: Record }) => client.get>(`${id}`, opts), }; }