I'm trying to use the 'filter' parameter in the deals/v2 endpoint but keep getting a 400 error with the message "Invalid 'filter' value". The documentation does not specify what values are valid for this parameter. Could you please provide some examples or clarify the correct usage of the 'filter' parameter?
$response = $this->client->request('GET', 'deals/v2', [
'query' => [
'key' => $this->apiKey,
'shops' => implode(',', $shops),
'limit' => $limit,
'filter' => 'type:game'
]
]);