openclaw-smart-fetch 0.2.8 → 0.2.13
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/README.md +21 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +9892 -137
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +5 -1
- package/package.json +2 -2
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "smart-fetch",
|
|
3
3
|
"name": "Smart Fetch",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.13",
|
|
5
5
|
"description": "Clean web content extraction with browser-grade TLS fingerprinting. Uses wreq-js (Rust native bindings) for anti-bot bypass and Defuddle for superior content extraction.",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|
|
@@ -41,6 +41,10 @@
|
|
|
41
41
|
"type": "number",
|
|
42
42
|
"description": "Maximum number of batch_smart_fetch requests to run concurrently (default: 8)",
|
|
43
43
|
"default": 8
|
|
44
|
+
},
|
|
45
|
+
"tempDir": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"description": "Absolute temp directory used for attachment and binary downloads. If omitted, the plugin uses an OS temp subdirectory."
|
|
44
48
|
}
|
|
45
49
|
},
|
|
46
50
|
"additionalProperties": false
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-smart-fetch",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "OpenClaw smart fetch plugin with browser-grade TLS fingerprinting and Defuddle extraction.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@sinclair/typebox": "^0.34.49",
|
|
70
|
-
"@thinkscape/wreq-js": "2.2.
|
|
70
|
+
"@thinkscape/wreq-js": "2.2.5",
|
|
71
71
|
"defuddle": "^0.14.0",
|
|
72
72
|
"linkedom": "^0.18.12"
|
|
73
73
|
}
|