@agentvault/secure-channel 0.6.14 → 0.6.15
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/dist/cli.js +3 -2
- package/dist/cli.js.map +2 -2
- package/dist/index.js +3 -2
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -45677,14 +45677,15 @@ var SecureChannel = class _SecureChannel extends EventEmitter {
|
|
|
45677
45677
|
let emitText = messageText;
|
|
45678
45678
|
if (attachData) {
|
|
45679
45679
|
if (attachData.textContent) {
|
|
45680
|
-
emitText = `[Attachment: ${attachData.filename} (${attachData.mime})]
|
|
45680
|
+
emitText = `[Attachment: ${attachData.filename} (${attachData.mime}) saved to ${attachData.filePath}]
|
|
45681
45681
|
---
|
|
45682
45682
|
${attachData.textContent}
|
|
45683
45683
|
---
|
|
45684
45684
|
|
|
45685
45685
|
${messageText}`;
|
|
45686
45686
|
} else if (attachData.base64) {
|
|
45687
|
-
emitText = `[Image attachment: ${attachData.filename}]
|
|
45687
|
+
emitText = `[Image attachment: ${attachData.filename} saved to ${attachData.filePath}]
|
|
45688
|
+
Use your Read tool to view this image file.
|
|
45688
45689
|
|
|
45689
45690
|
${messageText}`;
|
|
45690
45691
|
} else {
|