import * as P from './Paginated'; type Visibility = 'all' | 'visible' | 'kiosk' | 'menu'; export type ProductResponse = { id: string; name: string; }; export type Product = { id: string; name: string; }; export type GetProductsQuery = P.GetQuery & { locationId?: string; visibility?: Visibility; }; export type GetProductsQueryRequest = P.GetQueryRequest & { location_id?: string; visibility?: Visibility; };