@crawlee/stagehand 4.0.0-beta.122 → 4.0.0-beta.124
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 +2 -3
- package/package.json +7 -7
package/index.mjs
CHANGED
|
@@ -10,7 +10,6 @@ export const BaseCrawleeLogger = mod.BaseCrawleeLogger;
|
|
|
10
10
|
export const BasicCrawler = mod.BasicCrawler;
|
|
11
11
|
export const BrowserCrawler = mod.BrowserCrawler;
|
|
12
12
|
export const BrowserLauncher = mod.BrowserLauncher;
|
|
13
|
-
export const ClientLoadSignal = mod.ClientLoadSignal;
|
|
14
13
|
export const ConcurrencySystem = mod.ConcurrencySystem;
|
|
15
14
|
export const Configuration = mod.Configuration;
|
|
16
15
|
export const ContextPipeline = mod.ContextPipeline;
|
|
@@ -76,6 +75,7 @@ export const Snapshotter = mod.Snapshotter;
|
|
|
76
75
|
export const StagehandCrawler = mod.StagehandCrawler;
|
|
77
76
|
export const StateValidationError = mod.StateValidationError;
|
|
78
77
|
export const Statistics = mod.Statistics;
|
|
78
|
+
export const StorageBackendLoadSignal = mod.StorageBackendLoadSignal;
|
|
79
79
|
export const StorageInstanceManager = mod.StorageInstanceManager;
|
|
80
80
|
export const StorageStatsTracker = mod.StorageStatsTracker;
|
|
81
81
|
export const StorageTransaction = mod.StorageTransaction;
|
|
@@ -85,8 +85,8 @@ export const activeStorageTransaction = mod.activeStorageTransaction;
|
|
|
85
85
|
export const applyRequestTransform = mod.applyRequestTransform;
|
|
86
86
|
export const assertJsonSerializable = mod.assertJsonSerializable;
|
|
87
87
|
export const bindMethodsToServiceLocator = mod.bindMethodsToServiceLocator;
|
|
88
|
-
export const browserCrawlerEnqueueLinks = mod.browserCrawlerEnqueueLinks;
|
|
89
88
|
export const browserPoolCookieToToughCookie = mod.browserPoolCookieToToughCookie;
|
|
89
|
+
export const buildEnqueueStrategyPatterns = mod.buildEnqueueStrategyPatterns;
|
|
90
90
|
export const coerceBoolean = mod.coerceBoolean;
|
|
91
91
|
export const coerceNumber = mod.coerceNumber;
|
|
92
92
|
export const constructGlobObjectsFromGlobs = mod.constructGlobObjectsFromGlobs;
|
|
@@ -104,7 +104,6 @@ export const createStorageTransaction = mod.createStorageTransaction;
|
|
|
104
104
|
export const currentStorageTransaction = mod.currentStorageTransaction;
|
|
105
105
|
export const defaultRoute = mod.defaultRoute;
|
|
106
106
|
export const deserializeArray = mod.deserializeArray;
|
|
107
|
-
export const enqueueLinks = mod.enqueueLinks;
|
|
108
107
|
export const evaluateLoadSignalSample = mod.evaluateLoadSignalSample;
|
|
109
108
|
export const extractUrlsFromPage = mod.extractUrlsFromPage;
|
|
110
109
|
export const field = mod.field;
|
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.124",
|
|
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": ">=22.0.0"
|
|
@@ -57,11 +57,11 @@
|
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@apify/timeout": "^0.4.4",
|
|
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.124",
|
|
61
|
+
"@crawlee/browser-pool": "4.0.0-beta.124",
|
|
62
|
+
"@crawlee/core": "4.0.0-beta.124",
|
|
63
|
+
"@crawlee/types": "4.0.0-beta.124",
|
|
64
|
+
"@crawlee/utils": "4.0.0-beta.124",
|
|
65
65
|
"tslib": "^2.8.1",
|
|
66
66
|
"zod": "^4.4.3"
|
|
67
67
|
},
|
|
@@ -88,5 +88,5 @@
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
},
|
|
91
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "0694ee1b94c755b98141671baa93cc363f2bf8e3"
|
|
92
92
|
}
|