{ $this->connection =
$connection;
$this->storeClient =
$storeClient;
$this->unpackService =
$unpackService;
} /**
* @return \Shopware\Components\HttpClient\Response
*/
public function updateLicences(UpdateLicencesRequest
$request) { $response =
$this->storeClient->
doAuthPostRequestRaw( $request->
getToken(),
'/licenseupgrades/simple',
[ 'domain' =>
$request->
getDomain(),
'shopwareVersion' =>
$request->
getShopwareVersion(),
'locale' =>
$request->
getLocale(),
] );
return $response;
}