Skip to content

Commit f1f7ad7

Browse files
Add CodeSupport filtering when calling api
1 parent 2c9d930 commit f1f7ad7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Api/Clients/TiteLive/TiteLiveClient.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,9 @@ class TiteLiveClient implements BookDirectoryClient
2020
use UsesBookModel;
2121

2222
protected string $endpoint;
23-
2423
protected string $login_endpoint;
25-
2624
protected string $login;
27-
2825
protected string $password;
29-
3026
protected array $params = [];
3127

3228
public function __construct(string $endpoint, string $login_endpoint, string $login, string $password)
@@ -173,6 +169,7 @@ private function buildParamsForRequest(): string
173169
{
174170
$this->params['stocks'] = 1;
175171
$this->params['base'] = 'paper';
172+
$this->params['code_support'] = 'T,P,BL';
176173

177174
return '?'.http_build_query($this->params);
178175
}

0 commit comments

Comments
 (0)