} /**
* @return array<string, string>
*/
public function getDefaultQueryParameters(Context
$context): array
{ return [ 'shopwareVersion' =>
$this->instanceService->
getShopwareVersion(),
'language' =>
$this->localeProvider->
getLocaleFromContext($context),
'domain' =>
$this->
getLicenseDomain(),
];
} private function getUserStoreToken(Context
$context): ?string
{ try { return $this->
getTokenFromAdmin($context);
} catch (InvalidContextSourceException
) { return $this->
getTokenFromSystem($context);
} }