Feature/extend scraper configuration support (#2110)

* Extend scraper configuration support

* Update changelog
This commit is contained in:
Thomas Kaul
2023-07-01 11:08:10 +02:00
committed by GitHub
parent b7f635bdfc
commit e62da06c5c
9 changed files with 50 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
export interface ScraperConfiguration {
defaultMarketPrice?: number;
headers?: { [key: string]: string };
selector: string;
url: string;
}