Allow to cache amazon search results to reduce API calls

This commit is contained in:
Jan Böhmer 2026-02-22 22:29:44 +01:00
parent 258289482b
commit 87919eb445
2 changed files with 60 additions and 5 deletions

View file

@ -43,4 +43,9 @@ class CanopySettings
public ?string $apiKey = null;
public string $domain = "de";
/**
* @var bool If true, the provider will always retrieve details for a part, resulting in an additional API request
*/
public bool $alwaysGetDetails = false;
}