@crawlee/stagehand 4.0.0-beta.111 → 4.0.0-beta.112
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 +5 -0
- package/internals/stagehand-crawler.d.ts +2 -0
- package/package.json +7 -7
package/index.mjs
CHANGED
|
@@ -46,6 +46,7 @@ export const NavigationSkippedError = mod.NavigationSkippedError;
|
|
|
46
46
|
export const NonRetryableError = mod.NonRetryableError;
|
|
47
47
|
export const OwnedOrInjected = mod.OwnedOrInjected;
|
|
48
48
|
export const PERSIST_STATE_KEY = mod.PERSIST_STATE_KEY;
|
|
49
|
+
export const PersistentRateLimitError = mod.PersistentRateLimitError;
|
|
49
50
|
export const ProxyConfiguration = mod.ProxyConfiguration;
|
|
50
51
|
export const QUERY_HEAD_BUFFER = mod.QUERY_HEAD_BUFFER;
|
|
51
52
|
export const QUERY_HEAD_MIN_LENGTH = mod.QUERY_HEAD_MIN_LENGTH;
|
|
@@ -57,6 +58,7 @@ export const RequestList = mod.RequestList;
|
|
|
57
58
|
export const RequestManagerTandem = mod.RequestManagerTandem;
|
|
58
59
|
export const RequestQueue = mod.RequestQueue;
|
|
59
60
|
export const RequestState = mod.RequestState;
|
|
61
|
+
export const RequestThrottledError = mod.RequestThrottledError;
|
|
60
62
|
export const RequestValidationError = mod.RequestValidationError;
|
|
61
63
|
export const RetryRequestError = mod.RetryRequestError;
|
|
62
64
|
export const Router = mod.Router;
|
|
@@ -76,6 +78,7 @@ export const StorageInstanceManager = mod.StorageInstanceManager;
|
|
|
76
78
|
export const StorageStatsTracker = mod.StorageStatsTracker;
|
|
77
79
|
export const StorageTransaction = mod.StorageTransaction;
|
|
78
80
|
export const SystemStatus = mod.SystemStatus;
|
|
81
|
+
export const ThrottlingRequestManager = mod.ThrottlingRequestManager;
|
|
79
82
|
export const activeStorageTransaction = mod.activeStorageTransaction;
|
|
80
83
|
export const applyRequestTransform = mod.applyRequestTransform;
|
|
81
84
|
export const assertJsonSerializable = mod.assertJsonSerializable;
|
|
@@ -113,6 +116,7 @@ export const log = mod.log;
|
|
|
113
116
|
export const mergeCookies = mod.mergeCookies;
|
|
114
117
|
export const navigationDeadlineKey = mod.navigationDeadlineKey;
|
|
115
118
|
export const operationRejectedInTransaction = mod.operationRejectedInTransaction;
|
|
119
|
+
export const parseRetryAfterHeader = mod.parseRetryAfterHeader;
|
|
116
120
|
export const parseValue = mod.parseValue;
|
|
117
121
|
export const purgeDefaultStorages = mod.purgeDefaultStorages;
|
|
118
122
|
export const rejectOperationInTransaction = mod.rejectOperationInTransaction;
|
|
@@ -124,6 +128,7 @@ export const serializeValue = mod.serializeValue;
|
|
|
124
128
|
export const serviceLocator = mod.serviceLocator;
|
|
125
129
|
export const snapshotValue = mod.snapshotValue;
|
|
126
130
|
export const stagehandUtils = mod.stagehandUtils;
|
|
131
|
+
export const supportsDomainThrottling = mod.supportsDomainThrottling;
|
|
127
132
|
export const toughCookieToBrowserPoolCookie = mod.toughCookieToBrowserPoolCookie;
|
|
128
133
|
export const tryAbsoluteURL = mod.tryAbsoluteURL;
|
|
129
134
|
export const updateEnqueueLinksPatternCache = mod.updateEnqueueLinksPatternCache;
|
|
@@ -345,6 +345,8 @@ export declare class StagehandCrawler<ContextExtension = Dictionary<never>, Exte
|
|
|
345
345
|
requestList: import("ow").ObjectPredicate<object> & import("ow").BasePredicate<object | undefined>;
|
|
346
346
|
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
347
347
|
requestQueue: import("ow").ObjectPredicate<object> & import("ow").BasePredicate<object | undefined>;
|
|
348
|
+
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
349
|
+
requestManager: import("ow").ObjectPredicate<object> & import("ow").BasePredicate<object | undefined>;
|
|
348
350
|
// @ts-ignore optional peer dependency or compatibility with es2022
|
|
349
351
|
requestHandler: import("ow").Predicate<Function> & import("ow").BasePredicate<Function | undefined>;
|
|
350
352
|
// @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.112",
|
|
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.112",
|
|
61
|
+
"@crawlee/browser-pool": "4.0.0-beta.112",
|
|
62
|
+
"@crawlee/core": "4.0.0-beta.112",
|
|
63
|
+
"@crawlee/types": "4.0.0-beta.112",
|
|
64
|
+
"@crawlee/utils": "4.0.0-beta.112",
|
|
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": "5d1e107d4dc4ffd21f1c6cc5b1a1c10b59ca2b47"
|
|
97
97
|
}
|