crawlee 3.17.1-beta.53 → 3.17.1-beta.55
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 +15 -15
package/index.mjs
CHANGED
|
@@ -83,6 +83,7 @@ export const RequestQueue = mod.RequestQueue;
|
|
|
83
83
|
export const RequestQueueV1 = mod.RequestQueueV1;
|
|
84
84
|
export const RequestQueueV2 = mod.RequestQueueV2;
|
|
85
85
|
export const RequestState = mod.RequestState;
|
|
86
|
+
export const RequestValidationError = mod.RequestValidationError;
|
|
86
87
|
export const RetryRequestError = mod.RetryRequestError;
|
|
87
88
|
export const RobotsFile = mod.RobotsFile;
|
|
88
89
|
export const RobotsTxtFile = mod.RobotsTxtFile;
|
|
@@ -132,6 +133,7 @@ export const createPuppeteerRouter = mod.createPuppeteerRouter;
|
|
|
132
133
|
export const createRequestDebugInfo = mod.createRequestDebugInfo;
|
|
133
134
|
export const createRequestOptions = mod.createRequestOptions;
|
|
134
135
|
export const createRequests = mod.createRequests;
|
|
136
|
+
export const defaultRoute = mod.defaultRoute;
|
|
135
137
|
export const deserializeArray = mod.deserializeArray;
|
|
136
138
|
export const discoverValidSitemaps = mod.discoverValidSitemaps;
|
|
137
139
|
export const domCrawlerEnqueueLinks = mod.domCrawlerEnqueueLinks;
|
|
@@ -189,6 +191,7 @@ export const updateEnqueueLinksPatternCache = mod.updateEnqueueLinksPatternCache
|
|
|
189
191
|
export const useState = mod.useState;
|
|
190
192
|
export const utils = mod.utils;
|
|
191
193
|
export const validateGlobPattern = mod.validateGlobPattern;
|
|
194
|
+
export const validateUserData = mod.validateUserData;
|
|
192
195
|
export const validators = mod.validators;
|
|
193
196
|
export const weightedAvg = mod.weightedAvg;
|
|
194
197
|
export const withCheckedStorageAccess = mod.withCheckedStorageAccess;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crawlee",
|
|
3
|
-
"version": "3.17.1-beta.
|
|
3
|
+
"version": "3.17.1-beta.55",
|
|
4
4
|
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=16.0.0"
|
|
@@ -54,19 +54,19 @@
|
|
|
54
54
|
"access": "public"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@crawlee/basic": "3.17.1-beta.
|
|
58
|
-
"@crawlee/browser": "3.17.1-beta.
|
|
59
|
-
"@crawlee/browser-pool": "3.17.1-beta.
|
|
60
|
-
"@crawlee/cheerio": "3.17.1-beta.
|
|
61
|
-
"@crawlee/cli": "3.17.1-beta.
|
|
62
|
-
"@crawlee/core": "3.17.1-beta.
|
|
63
|
-
"@crawlee/http": "3.17.1-beta.
|
|
64
|
-
"@crawlee/jsdom": "3.17.1-beta.
|
|
65
|
-
"@crawlee/linkedom": "3.17.1-beta.
|
|
66
|
-
"@crawlee/memory-storage": "3.17.1-beta.
|
|
67
|
-
"@crawlee/playwright": "3.17.1-beta.
|
|
68
|
-
"@crawlee/puppeteer": "3.17.1-beta.
|
|
69
|
-
"@crawlee/utils": "3.17.1-beta.
|
|
57
|
+
"@crawlee/basic": "3.17.1-beta.55",
|
|
58
|
+
"@crawlee/browser": "3.17.1-beta.55",
|
|
59
|
+
"@crawlee/browser-pool": "3.17.1-beta.55",
|
|
60
|
+
"@crawlee/cheerio": "3.17.1-beta.55",
|
|
61
|
+
"@crawlee/cli": "3.17.1-beta.55",
|
|
62
|
+
"@crawlee/core": "3.17.1-beta.55",
|
|
63
|
+
"@crawlee/http": "3.17.1-beta.55",
|
|
64
|
+
"@crawlee/jsdom": "3.17.1-beta.55",
|
|
65
|
+
"@crawlee/linkedom": "3.17.1-beta.55",
|
|
66
|
+
"@crawlee/memory-storage": "3.17.1-beta.55",
|
|
67
|
+
"@crawlee/playwright": "3.17.1-beta.55",
|
|
68
|
+
"@crawlee/puppeteer": "3.17.1-beta.55",
|
|
69
|
+
"@crawlee/utils": "3.17.1-beta.55",
|
|
70
70
|
"import-local": "^3.1.0",
|
|
71
71
|
"tslib": "^2.4.0"
|
|
72
72
|
},
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "93d29e305f01ca6ca9bb79264a5ca553b19766ef"
|
|
97
97
|
}
|