Feature/execute scraper configuration instantly (#3723)

* Execute scraper configuration instantly

* Update changelog

---------

Co-authored-by: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
This commit is contained in:
Shaunak Das
2024-09-05 00:47:38 +05:30
committed by GitHub
parent 8018236942
commit 7ea9061852
4 changed files with 37 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ export interface ScraperConfiguration {
defaultMarketPrice?: number;
headers?: { [key: string]: string };
locale?: string;
mode?: 'instant' | 'lazy';
selector: string;
url: string;
}