@dai_ming/plugin-deliverables 1.2.2 → 1.2.3
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.js +2 -2
- package/openclaw-plugin.json +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -919,7 +919,7 @@ function kbMultipartUpload(fileBuffers, fields, pathsArray) {
|
|
|
919
919
|
"X-API-Key": kbApiKey(),
|
|
920
920
|
"Content-Length": body.length,
|
|
921
921
|
},
|
|
922
|
-
timeout:
|
|
922
|
+
timeout: 30000,
|
|
923
923
|
},
|
|
924
924
|
(res) => {
|
|
925
925
|
const chunks = [];
|
|
@@ -946,7 +946,7 @@ function kbMultipartUpload(fileBuffers, fields, pathsArray) {
|
|
|
946
946
|
},
|
|
947
947
|
);
|
|
948
948
|
req.on("timeout", () => {
|
|
949
|
-
req.destroy(new Error("kb upload timeout after
|
|
949
|
+
req.destroy(new Error("kb upload timeout after 30s"));
|
|
950
950
|
});
|
|
951
951
|
req.on("error", reject);
|
|
952
952
|
req.write(body);
|
package/openclaw-plugin.json
CHANGED
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "plugin-deliverables",
|
|
3
3
|
"name": "Deliverables",
|
|
4
4
|
"description": "Deliverables runtime guard for upload-first file delivery with Palz split-send diagnostics.",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.3",
|
|
6
6
|
"skills": ["./skills"],
|
|
7
7
|
"configSchema": {
|
|
8
8
|
"type": "object",
|
package/package.json
CHANGED