const filters = await client.store.products.filters({
taxon_id: 'txn_abc123', // Optional: scope filters to a taxon
});
// Response:
// {
// filters: [
// { id: 'price', type: 'price_range', min: 9.99, max: 199.99, currency: 'USD' },
// { id: 'availability', type: 'availability', options: [{ id: 'in_stock', count: 42 }, ...] },
// { id: 'opttype_abc', type: 'option', name: 'color', presentation: 'Color', options: [...] },
// { id: 'taxons', type: 'taxon', options: [{ id: 'txn_abc', name: 'Shirts', permalink: '...', count: 12 }] },
// ],
// sort_options: [{ id: 'manual' }, { id: 'price asc' }, { id: 'best_selling' }, ...],
// default_sort: 'manual',
// total_count: 85,
// }