@crawlee/stagehand 4.0.0-beta.45 → 4.0.0-beta.47
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/index.mjs +1 -0
- package/internals/stagehand-crawler.d.ts +2 -2
- package/package.json +7 -7
package/index.mjs
CHANGED
|
@@ -34,6 +34,7 @@ export const LoggerText = mod.LoggerText;
|
|
|
34
34
|
export const MAX_POOL_SIZE = mod.MAX_POOL_SIZE;
|
|
35
35
|
export const MAX_QUERIES_FOR_CONSISTENCY = mod.MAX_QUERIES_FOR_CONSISTENCY;
|
|
36
36
|
export const MissingRouteError = mod.MissingRouteError;
|
|
37
|
+
export const MissingSessionError = mod.MissingSessionError;
|
|
37
38
|
export const NavigationSkippedError = mod.NavigationSkippedError;
|
|
38
39
|
export const NonRetryableError = mod.NonRetryableError;
|
|
39
40
|
export const PERSIST_STATE_KEY = mod.PERSIST_STATE_KEY;
|
|
@@ -332,8 +332,6 @@ export declare class StagehandCrawler<ContextExtension = Dictionary<never>, Exte
|
|
|
332
332
|
launchContext: import("ow").ObjectPredicate<object> & import("ow").BasePredicate<object | undefined>;
|
|
333
333
|
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
334
334
|
headless: import("ow").AnyPredicate<string | boolean>;
|
|
335
|
-
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
336
|
-
sessionPoolOptions: import("ow").ObjectPredicate<object> & import("ow").BasePredicate<object | undefined>;
|
|
337
335
|
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
338
336
|
persistCookiesPerSession: import("ow").BooleanPredicate & import("ow").BasePredicate<boolean | undefined>;
|
|
339
337
|
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
@@ -366,6 +364,8 @@ export declare class StagehandCrawler<ContextExtension = Dictionary<never>, Exte
|
|
|
366
364
|
maxCrawlDepth: import("ow").NumberPredicate & import("ow").BasePredicate<number | undefined>;
|
|
367
365
|
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
368
366
|
autoscaledPoolOptions: import("ow").ObjectPredicate<object> & import("ow").BasePredicate<object | undefined>;
|
|
367
|
+
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
368
|
+
sessionPool: import("ow").ObjectPredicate<object> & import("ow").BasePredicate<object | undefined>;
|
|
369
369
|
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
370
370
|
statusMessageLoggingInterval: import("ow").NumberPredicate & import("ow").BasePredicate<number | undefined>;
|
|
371
371
|
// @ts-ignore optional peer dependency or compatibility with es2022
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crawlee/stagehand",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.47",
|
|
4
4
|
"description": "AI-powered web crawling with Stagehand integration for Crawlee - enables natural language browser automation with act(), extract(), and observe() methods.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=16.0.0"
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@apify/timeout": "^0.3.2",
|
|
60
|
-
"@crawlee/browser": "4.0.0-beta.
|
|
61
|
-
"@crawlee/browser-pool": "4.0.0-beta.
|
|
62
|
-
"@crawlee/core": "4.0.0-beta.
|
|
63
|
-
"@crawlee/types": "4.0.0-beta.
|
|
64
|
-
"@crawlee/utils": "4.0.0-beta.
|
|
60
|
+
"@crawlee/browser": "4.0.0-beta.47",
|
|
61
|
+
"@crawlee/browser-pool": "4.0.0-beta.47",
|
|
62
|
+
"@crawlee/core": "4.0.0-beta.47",
|
|
63
|
+
"@crawlee/types": "4.0.0-beta.47",
|
|
64
|
+
"@crawlee/utils": "4.0.0-beta.47",
|
|
65
65
|
"ow": "^2.0.0",
|
|
66
66
|
"tslib": "^2.8.1"
|
|
67
67
|
},
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "ec8cc65781fd56bb47b0295a443b3d5e26b25e37"
|
|
97
97
|
}
|