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