From 4c266155785aad5050ebff7211e3d5f9e15c3238 Mon Sep 17 00:00:00 2001
From: Matthias Nott <mnott@mnsoft.org>
Date: Sun, 08 Mar 2026 07:37:45 +0100
Subject: [PATCH] feat: explicit session addressing + toast queue + solid toast styling

---
 types/index.ts |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/types/index.ts b/types/index.ts
index 613d2d6..259915f 100644
--- a/types/index.ts
+++ b/types/index.ts
@@ -28,6 +28,7 @@
 export interface WsTextMessage {
   type: "text";
   content: string;
+  sessionId?: string;
 }
 
 export interface WsVoiceMessage {
@@ -35,6 +36,7 @@
   audioBase64: string;
   content: string;
   messageId?: string;
+  sessionId?: string;
 }
 
 export interface WsImageMessage {
@@ -42,12 +44,14 @@
   imageBase64: string;
   caption: string;
   mimeType: string;
+  sessionId?: string;
 }
 
 export interface WsCommandMessage {
   type: "command";
   command: string;
   args?: Record<string, unknown>;
+  sessionId?: string;
 }
 
 export type WsOutgoing = WsTextMessage | WsVoiceMessage | WsImageMessage | WsCommandMessage;

--
Gitblit v1.3.1