@crawlee/browser-pool 4.0.0-beta.125 → 4.0.0-beta.127
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/package.json +4 -4
- package/remote-browser-pool.d.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crawlee/browser-pool",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.127",
|
|
4
4
|
"description": "Rotate multiple browsers using popular automation libraries such as Playwright or Puppeteer.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22.0.0"
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@apify/timeout": "^0.4.4",
|
|
34
|
-
"@crawlee/core": "4.0.0-beta.
|
|
35
|
-
"@crawlee/types": "4.0.0-beta.
|
|
34
|
+
"@crawlee/core": "4.0.0-beta.127",
|
|
35
|
+
"@crawlee/types": "4.0.0-beta.127",
|
|
36
36
|
"fingerprint-generator": "^2.1.68",
|
|
37
37
|
"fingerprint-injector": "^2.1.68",
|
|
38
38
|
"lodash.merge": "^4.6.2",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "4aa4a4d8d105bb530649ac5cd9197a3169106bd9"
|
|
67
67
|
}
|
package/remote-browser-pool.d.ts
CHANGED
|
@@ -95,10 +95,10 @@ export interface RemoteBrowserPoolOptions {
|
|
|
95
95
|
slotPollIntervalMillis?: number;
|
|
96
96
|
}
|
|
97
97
|
/**
|
|
98
|
-
* The remote-connection configuration a browser crawler accepts on its `remoteBrowser` option
|
|
99
|
-
* {@link RemoteBrowserPoolOptions}
|
|
100
|
-
*
|
|
101
|
-
*
|
|
98
|
+
* The remote-connection configuration a browser crawler accepts on its `remoteBrowser` option: the
|
|
99
|
+
* {@link RemoteBrowserPoolOptions} minus the `browserPlugins` (the crawler builds the correct one for its
|
|
100
|
+
* browser, which is what makes this path mismatch-proof) and minus `browserPoolOptions` — tuning the wrapping
|
|
101
|
+
* pool means building the pool yourself, through the `remote*BrowserPool()` factory for your crawler.
|
|
102
102
|
*/
|
|
103
103
|
export type CrawlerRemoteBrowserOptions = Omit<RemoteBrowserPoolOptions, 'browserPlugins' | 'browserPoolOptions'>;
|
|
104
104
|
/**
|