mirror of
https://github.com/retailcrm/api-client-go.git
synced 2024-11-21 20:36:03 +03:00
Added support for urlLike filter in GET /api/v5/store/products
This commit is contained in:
parent
c79e6c0497
commit
2f0f55be42
@ -5896,6 +5896,7 @@ func TestClient_Products(t *testing.T) {
|
||||
Get("/store/products").
|
||||
MatchParam("filter[active]", "1").
|
||||
MatchParam("filter[minPrice]", "1").
|
||||
MatchParam("filter[urlLike]", "https://test.com/path/to/resource").
|
||||
Reply(200).
|
||||
BodyString(`{"success": true}`)
|
||||
|
||||
@ -5903,6 +5904,7 @@ func TestClient_Products(t *testing.T) {
|
||||
Filter: ProductsFilter{
|
||||
Active: 1,
|
||||
MinPrice: 1,
|
||||
URLLike: "https://test.com/path/to/resource",
|
||||
},
|
||||
})
|
||||
if err != nil {
|
||||
|
@ -352,6 +352,7 @@ type ProductsFilter struct {
|
||||
ExternalID string `url:"externalId,omitempty"`
|
||||
Manufacturer string `url:"manufacturer,omitempty"`
|
||||
URL string `url:"url,omitempty"`
|
||||
URLLike string `url:"urlLike,omitempty"`
|
||||
PriceType string `url:"priceType,omitempty"`
|
||||
OfferExternalID string `url:"offerExternalId,omitempty"`
|
||||
Sites []string `url:"sites,omitempty,brackets"`
|
||||
|
Loading…
Reference in New Issue
Block a user