@crawlee/stagehand 4.0.0-beta.60 → 4.0.0-beta.61
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 -2
- package/package.json +7 -7
package/index.mjs
CHANGED
|
@@ -70,12 +70,11 @@ export const Statistics = mod.Statistics;
|
|
|
70
70
|
export const StorageInstanceManager = mod.StorageInstanceManager;
|
|
71
71
|
export const SystemStatus = mod.SystemStatus;
|
|
72
72
|
export const applyRequestTransform = mod.applyRequestTransform;
|
|
73
|
+
export const assertJsonSerializable = mod.assertJsonSerializable;
|
|
73
74
|
export const bindMethodsToServiceLocator = mod.bindMethodsToServiceLocator;
|
|
74
75
|
export const browserCrawlerEnqueueLinks = mod.browserCrawlerEnqueueLinks;
|
|
75
76
|
export const browserPoolCookieToToughCookie = mod.browserPoolCookieToToughCookie;
|
|
76
|
-
export const checkAndSerialize = mod.checkAndSerialize;
|
|
77
77
|
export const checkStorageAccess = mod.checkStorageAccess;
|
|
78
|
-
export const chunkBySize = mod.chunkBySize;
|
|
79
78
|
export const coerceBoolean = mod.coerceBoolean;
|
|
80
79
|
export const coerceNumber = mod.coerceNumber;
|
|
81
80
|
export const constructGlobObjectsFromGlobs = mod.constructGlobObjectsFromGlobs;
|
|
@@ -85,6 +84,7 @@ export const cookieStringToToughCookie = mod.cookieStringToToughCookie;
|
|
|
85
84
|
export const crawleeConfigFields = mod.crawleeConfigFields;
|
|
86
85
|
export const createBasicRouter = mod.createBasicRouter;
|
|
87
86
|
export const createDeserialize = mod.createDeserialize;
|
|
87
|
+
export const createDualIterable = mod.createDualIterable;
|
|
88
88
|
export const createRequestOptions = mod.createRequestOptions;
|
|
89
89
|
export const createStagehandRouter = mod.createStagehandRouter;
|
|
90
90
|
export const deserializeArray = mod.deserializeArray;
|
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.61",
|
|
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.61",
|
|
61
|
+
"@crawlee/browser-pool": "4.0.0-beta.61",
|
|
62
|
+
"@crawlee/core": "4.0.0-beta.61",
|
|
63
|
+
"@crawlee/types": "4.0.0-beta.61",
|
|
64
|
+
"@crawlee/utils": "4.0.0-beta.61",
|
|
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": "4ff7bde2ee98666a553917858fe4fd12c264a9a6"
|
|
97
97
|
}
|