@exreve/exk 1.0.12 → 1.0.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/dist/agentSession.js +4 -3
- package/dist/ttc-cli.tar.gz +0 -0
- package/package.json +1 -1
package/dist/agentSession.js
CHANGED
|
@@ -680,13 +680,14 @@ export class AgentSessionManager {
|
|
|
680
680
|
}
|
|
681
681
|
}
|
|
682
682
|
else if (message.type === 'system') {
|
|
683
|
+
const sysMsg = message;
|
|
683
684
|
onOutput({
|
|
684
685
|
type: 'system',
|
|
685
|
-
data:
|
|
686
|
+
data: { ...sysMsg, subtype: sysMsg.subtype },
|
|
686
687
|
timestamp: Date.now(),
|
|
687
688
|
metadata: {
|
|
688
|
-
subtype:
|
|
689
|
-
messageType:
|
|
689
|
+
subtype: sysMsg.subtype,
|
|
690
|
+
messageType: sysMsg.subtype || 'system'
|
|
690
691
|
}
|
|
691
692
|
});
|
|
692
693
|
}
|
package/dist/ttc-cli.tar.gz
CHANGED
|
Binary file
|