@letsscrapedata/scraper 0.0.87 → 0.0.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/package.json +5 -4
package/dist/index.d.cts
CHANGED
|
@@ -13,6 +13,7 @@ interface ScraperStateData extends BrowserStateData {
|
|
|
13
13
|
* @default {}
|
|
14
14
|
*/
|
|
15
15
|
userData: Record<string, string>;
|
|
16
|
+
expireTime?: number;
|
|
16
17
|
}
|
|
17
18
|
/**
|
|
18
19
|
* Network context used to execute the task
|
|
@@ -97,6 +98,7 @@ interface BrowserConfig {
|
|
|
97
98
|
* proxy
|
|
98
99
|
** no proxy will be used if proxyUrl is ""
|
|
99
100
|
** valid only if !browserUrl
|
|
101
|
+
** @default "none"
|
|
100
102
|
*/
|
|
101
103
|
proxyUrl?: string;
|
|
102
104
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ interface ScraperStateData extends BrowserStateData {
|
|
|
13
13
|
* @default {}
|
|
14
14
|
*/
|
|
15
15
|
userData: Record<string, string>;
|
|
16
|
+
expireTime?: number;
|
|
16
17
|
}
|
|
17
18
|
/**
|
|
18
19
|
* Network context used to execute the task
|
|
@@ -97,6 +98,7 @@ interface BrowserConfig {
|
|
|
97
98
|
* proxy
|
|
98
99
|
** no proxy will be used if proxyUrl is ""
|
|
99
100
|
** valid only if !browserUrl
|
|
101
|
+
** @default "none"
|
|
100
102
|
*/
|
|
101
103
|
proxyUrl?: string;
|
|
102
104
|
/**
|