import type { ApiClient } from "@promobase/sdk-runtime"; export interface StoreLocationFields { full_address: string; hours: Record; id: string; phone_number: string; pickup_options: string[]; price_range: string; store_code: string; zip_code: string; } export function storeLocationNode(client: ApiClient, id: string) { return { __path: id, __brand: undefined as unknown as StoreLocationFields, get: (opts: { fields: F; params?: Record }) => client.get>(`${id}`, opts), }; }