@crawlee/stagehand 4.0.0-beta.83 → 4.0.0-beta.85
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 +3 -0
- package/package.json +7 -7
package/index.mjs
CHANGED
|
@@ -90,6 +90,7 @@ export const createCpuLoadSignal = mod.createCpuLoadSignal;
|
|
|
90
90
|
export const createDeserialize = mod.createDeserialize;
|
|
91
91
|
export const createDualIterable = mod.createDualIterable;
|
|
92
92
|
export const createEventLoopLoadSignal = mod.createEventLoopLoadSignal;
|
|
93
|
+
export const createRequestDebugInfo = mod.createRequestDebugInfo;
|
|
93
94
|
export const createRequestOptions = mod.createRequestOptions;
|
|
94
95
|
export const createStagehandRouter = mod.createStagehandRouter;
|
|
95
96
|
export const defaultRoute = mod.defaultRoute;
|
|
@@ -101,8 +102,10 @@ export const field = mod.field;
|
|
|
101
102
|
export const filterRequestOptionsByPatterns = mod.filterRequestOptionsByPatterns;
|
|
102
103
|
export const getCookiesFromResponse = mod.getCookiesFromResponse;
|
|
103
104
|
export const getDefaultCookieExpirationDate = mod.getDefaultCookieExpirationDate;
|
|
105
|
+
export const getObjectType = mod.getObjectType;
|
|
104
106
|
export const getRequestId = mod.getRequestId;
|
|
105
107
|
export const handleRequestTimeout = mod.handleRequestTimeout;
|
|
108
|
+
export const inspectValue = mod.inspectValue;
|
|
106
109
|
export const log = mod.log;
|
|
107
110
|
export const mergeCookies = mod.mergeCookies;
|
|
108
111
|
export const parseValue = mod.parseValue;
|
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.85",
|
|
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.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.85",
|
|
61
|
+
"@crawlee/browser-pool": "4.0.0-beta.85",
|
|
62
|
+
"@crawlee/core": "4.0.0-beta.85",
|
|
63
|
+
"@crawlee/types": "4.0.0-beta.85",
|
|
64
|
+
"@crawlee/utils": "4.0.0-beta.85",
|
|
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": "8d6d3cd9da3dc9cb0b7822b28eb317019b6806bc"
|
|
97
97
|
}
|