Skip to content

Commit

Permalink
Type "backend.statistic.getActivitiesPerUser.return" (reference) ref …
Browse files Browse the repository at this point in the history
…has changed from "Backend_StatisticCount" to "Backend_StatisticChart"
  • Loading branch information
SDKgen-Bot committed Jul 28, 2024
1 parent f8948d1 commit 6e6eef8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sdkgen.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/BackendStatisticTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -871,11 +871,11 @@ public function getCountRequests(?int $startIndex = null, ?int $count = null, ?s
* @param string|null $path
* @param string|null $header
* @param string|null $body
* @return BackendStatisticCount
* @return BackendStatisticChart
* @throws CommonMessageException
* @throws ClientException
*/
public function getActivitiesPerUser(?int $startIndex = null, ?int $count = null, ?string $search = null, ?string $from = null, ?string $to = null, ?int $operationId = null, ?int $appId = null, ?int $userId = null, ?string $ip = null, ?string $userAgent = null, ?string $method = null, ?string $path = null, ?string $header = null, ?string $body = null): BackendStatisticCount
public function getActivitiesPerUser(?int $startIndex = null, ?int $count = null, ?string $search = null, ?string $from = null, ?string $to = null, ?int $operationId = null, ?int $appId = null, ?int $userId = null, ?string $ip = null, ?string $userAgent = null, ?string $method = null, ?string $path = null, ?string $header = null, ?string $body = null): BackendStatisticChart
{
$url = $this->parser->url('/backend/statistic/activities_per_user', [
]);
Expand Down Expand Up @@ -904,7 +904,7 @@ public function getActivitiesPerUser(?int $startIndex = null, ?int $count = null
$response = $this->httpClient->request('GET', $url, $options);
$data = (string) $response->getBody();

return $this->parser->parse($data, BackendStatisticCount::class);
return $this->parser->parse($data, BackendStatisticChart::class);
} catch (ClientException $e) {
throw $e;
} catch (BadResponseException $e) {
Expand Down

0 comments on commit 6e6eef8

Please sign in to comment.