Refactor ChatMessage model and components: rename messageJson to miniMessageNode for clarity and consistency.

This commit is contained in:
2026-08-01 23:36:40 +02:00
parent 90eb40caa7
commit f7edde65d6
3 changed files with 3 additions and 3 deletions
@@ -7,7 +7,7 @@ export interface ChatMessage {
type: string;
channel: string;
receiver: string;
messageJson: ProcessedMiniMessageNode;
miniMessageNode: ProcessedMiniMessageNode;
notBlocked: boolean;
channelName?: string;
channelType?: 'SERVER' | 'DM' | 'PARTY' | 'GAC' | 'SPY';