From c23dfe16e95713e7058137308bdbc28419609a39 Mon Sep 17 00:00:00 2001
From: Matthias Nott <mnott@mnsoft.org>
Date: Sat, 07 Mar 2026 11:54:15 +0100
Subject: [PATCH] feat: typing indicator, message deletion, chain playback, autoplay guard
---
types/index.ts | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/types/index.ts b/types/index.ts
index 57d1765..0c97f86 100644
--- a/types/index.ts
+++ b/types/index.ts
@@ -102,6 +102,11 @@
content: string;
}
+export interface WsIncomingTyping {
+ type: "typing";
+ typing: boolean;
+}
+
export interface WsIncomingError {
type: "error";
message: string;
@@ -120,5 +125,6 @@
| WsIncomingSessionSwitched
| WsIncomingSessionRenamed
| WsIncomingTranscript
+ | WsIncomingTyping
| WsIncomingError
| WsIncomingStatus;
--
Gitblit v1.3.1