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.
Files changed (2) hide show
  1. package/index.mjs +3 -0
  2. 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.53",
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.53",
58
- "@crawlee/browser": "3.17.1-beta.53",
59
- "@crawlee/browser-pool": "3.17.1-beta.53",
60
- "@crawlee/cheerio": "3.17.1-beta.53",
61
- "@crawlee/cli": "3.17.1-beta.53",
62
- "@crawlee/core": "3.17.1-beta.53",
63
- "@crawlee/http": "3.17.1-beta.53",
64
- "@crawlee/jsdom": "3.17.1-beta.53",
65
- "@crawlee/linkedom": "3.17.1-beta.53",
66
- "@crawlee/memory-storage": "3.17.1-beta.53",
67
- "@crawlee/playwright": "3.17.1-beta.53",
68
- "@crawlee/puppeteer": "3.17.1-beta.53",
69
- "@crawlee/utils": "3.17.1-beta.53",
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": "59a0d19d96e7402cd8d0edd8b90ad4f5abc8f7db"
96
+ "gitHead": "93d29e305f01ca6ca9bb79264a5ca553b19766ef"
97
97
  }