This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added support for configure and in filter (#809)
* feat: added support for `in` filter on Files endpoint e.g. in(id,4b97cee1-70ea-4d97-8d46-9c441c3317de,2b435629-28d3-4555-9ce1-204a2f72b412) example use: ``` gateway.Files.Filter({ in: { id: [ '4b97cee1-70ea-4d97-8d46-9c441c3317de', '2b435629-28d3-4555-9ce1-204a2f72b412' ] } }).All() ``` * feat: added support for `configure` for product bundle components on Shopper Product endpoint. This enables implicit token users to get pricing and configuration for selected component options. e.g. /catalog/products/14edd744-c615-4a33-a2c2-df999bbb5103/configure example use: ``` gateway.ShopperCatalog.Products.Configure({ productId: '14edd744-c615-4a33-a2c2-df999bbb5103', selectedOptions: { plants: { 'a158ffa0-5d16-4325-8dcc-be8acd55eecf': 1 }, pots: { 'fc520b37-a709-4032-99b3-8d4ecc990027': 1 }, tools: { '1cc7f871-1071-4908-a79d-633adc56044a': 1, '7ffe107d-c5bd-4de4-b8f0-a58d90cb3cd3': 1 } } }) ```
- Loading branch information