@crawlee/linkedom 3.13.5-beta.5 → 3.13.5-beta.7
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 -0
- package/package.json +4 -4
- package/tsconfig.build.tsbuildinfo +1 -1
package/index.mjs
CHANGED
|
@@ -6,6 +6,7 @@ export const AutoscaledPool = mod.AutoscaledPool;
|
|
|
6
6
|
export const BASIC_CRAWLER_TIMEOUT_BUFFER_SECS = mod.BASIC_CRAWLER_TIMEOUT_BUFFER_SECS;
|
|
7
7
|
export const BLOCKED_STATUS_CODES = mod.BLOCKED_STATUS_CODES;
|
|
8
8
|
export const BasicCrawler = mod.BasicCrawler;
|
|
9
|
+
export const ByteCounterStream = mod.ByteCounterStream;
|
|
9
10
|
export const Configuration = mod.Configuration;
|
|
10
11
|
export const CookieParseError = mod.CookieParseError;
|
|
11
12
|
export const CrawlerExtension = mod.CrawlerExtension;
|
|
@@ -31,6 +32,7 @@ export const LoggerJson = mod.LoggerJson;
|
|
|
31
32
|
export const LoggerText = mod.LoggerText;
|
|
32
33
|
export const MAX_POOL_SIZE = mod.MAX_POOL_SIZE;
|
|
33
34
|
export const MAX_QUERIES_FOR_CONSISTENCY = mod.MAX_QUERIES_FOR_CONSISTENCY;
|
|
35
|
+
export const MinimumSpeedStream = mod.MinimumSpeedStream;
|
|
34
36
|
export const MissingRouteError = mod.MissingRouteError;
|
|
35
37
|
export const NonRetryableError = mod.NonRetryableError;
|
|
36
38
|
export const PERSIST_STATE_KEY = mod.PERSIST_STATE_KEY;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crawlee/linkedom",
|
|
3
|
-
"version": "3.13.5-beta.
|
|
3
|
+
"version": "3.13.5-beta.7",
|
|
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"
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@apify/timeout": "^0.3.0",
|
|
57
57
|
"@apify/utilities": "^2.7.10",
|
|
58
|
-
"@crawlee/http": "3.13.5-beta.
|
|
59
|
-
"@crawlee/types": "3.13.5-beta.
|
|
58
|
+
"@crawlee/http": "3.13.5-beta.7",
|
|
59
|
+
"@crawlee/types": "3.13.5-beta.7",
|
|
60
60
|
"linkedom": "^0.18.0",
|
|
61
61
|
"ow": "^0.28.2",
|
|
62
62
|
"tslib": "^2.4.0"
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "20d955daba865f1ec9a86bd8e4ad3592d4555c7e"
|
|
72
72
|
}
|