@crawlee/core 4.0.0-beta.141 → 4.0.0-beta.142
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crawlee/core",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.142",
|
|
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": ">=22.0.0"
|
|
@@ -52,10 +52,10 @@
|
|
|
52
52
|
"@apify/log": "^2.5.18",
|
|
53
53
|
"@apify/timeout": "^0.4.4",
|
|
54
54
|
"@apify/utilities": "^2.15.5",
|
|
55
|
-
"@crawlee/fs-storage": "4.0.0-beta.
|
|
56
|
-
"@crawlee/http-client": "4.0.0-beta.
|
|
57
|
-
"@crawlee/types": "4.0.0-beta.
|
|
58
|
-
"@crawlee/utils": "4.0.0-beta.
|
|
55
|
+
"@crawlee/fs-storage": "4.0.0-beta.142",
|
|
56
|
+
"@crawlee/http-client": "4.0.0-beta.142",
|
|
57
|
+
"@crawlee/types": "4.0.0-beta.142",
|
|
58
|
+
"@crawlee/utils": "4.0.0-beta.142",
|
|
59
59
|
"@sapphire/async-queue": "^1.5.5",
|
|
60
60
|
"@standard-schema/spec": "^1.0.0",
|
|
61
61
|
"@vladfrangu/async_event_emitter": "^2.4.6",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "d40a48fcb78865bd622a05027103155ac08a227f"
|
|
82
82
|
}
|
|
@@ -3,7 +3,7 @@ import type { PersistenceOptions } from '../crawlers/statistics.js';
|
|
|
3
3
|
import type { CrawleeLogger } from '../log.js';
|
|
4
4
|
import type { SessionOptions } from './session.js';
|
|
5
5
|
import { Session } from './session.js';
|
|
6
|
-
declare const SESSION_REUSE_STRATEGIES: readonly [
|
|
6
|
+
declare const SESSION_REUSE_STRATEGIES: readonly ['random', 'round-robin', 'use-until-failure'];
|
|
7
7
|
export type SessionReuseStrategy = (typeof SESSION_REUSE_STRATEGIES)[number];
|
|
8
8
|
/**
|
|
9
9
|
* Factory user-function which creates customized {@link Session} instances.
|