@crawlee/browser-pool 4.0.0-beta.97 → 4.0.0-beta.99
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.
|
@@ -28,11 +28,9 @@ export interface CommonLibrary {
|
|
|
28
28
|
launch(opts?: Dictionary): Promise<CommonBrowser>;
|
|
29
29
|
name?: () => string;
|
|
30
30
|
}
|
|
31
|
-
/** @internal */
|
|
32
31
|
export interface CommonBrowser {
|
|
33
32
|
newPage(...args: unknown[]): Promise<CommonPage>;
|
|
34
33
|
}
|
|
35
|
-
/** @internal */
|
|
36
34
|
export interface CommonPage {
|
|
37
35
|
close(...args: unknown[]): Promise<unknown>;
|
|
38
36
|
url(): string | Promise<string>;
|
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.99",
|
|
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.99",
|
|
35
|
+
"@crawlee/types": "4.0.0-beta.99",
|
|
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": "ad2748380941842bb10cff100f4b4caad92049e3"
|
|
67
67
|
}
|
package/remote-browser-pool.d.ts
CHANGED
|
@@ -32,8 +32,6 @@ export type RemoteBrowserEndpoint = string | ((options?: {
|
|
|
32
32
|
* the pool. The plugin calls {@link RemoteConnection.resolve|resolve} before connecting, stores the
|
|
33
33
|
* returned `token` on its launch context, and the controller later calls
|
|
34
34
|
* {@link RemoteConnection.release|release} with that token when the browser closes.
|
|
35
|
-
*
|
|
36
|
-
* @internal
|
|
37
35
|
*/
|
|
38
36
|
export interface RemoteConnection {
|
|
39
37
|
/** Resolves the endpoint for a single browser launch. The `token` identifies the session for release. */
|