@jealous-robot-dev/shared-types-responses 1.43.6 → 1.43.7
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.
@@ -88,6 +88,7 @@ export interface LiveRoomServerClientPing extends LiveRoomServerMinimumPayload {
|
|
88
88
|
export interface LiveRoomServerSessionEnded extends LiveRoomServerMinimumPayload {
|
89
89
|
}
|
90
90
|
export interface LiveRoomServerSessionState extends LiveRoomServerMinimumPayload {
|
91
|
+
receiver: string;
|
91
92
|
session: LiveRoomSessionDetails;
|
92
93
|
threads: LiveRoomConversationThread[];
|
93
94
|
participants: LiveRoomStandartParticipant[];
|
@@ -123,15 +124,18 @@ export interface LiveRoomServerChatMessageNew extends LiveRoomServerMinimumPaylo
|
|
123
124
|
};
|
124
125
|
}
|
125
126
|
export interface LiveRoomServerChatMessageEdited extends LiveRoomServerMinimumPayload {
|
127
|
+
audience: string[];
|
126
128
|
thread_id: string;
|
127
129
|
msg_id: number;
|
128
130
|
text: string;
|
129
131
|
}
|
130
132
|
export interface LiveRoomServerChatMessageDel extends LiveRoomServerMinimumPayload {
|
133
|
+
audience: string[];
|
131
134
|
thread_id: string;
|
132
135
|
msg_id: number;
|
133
136
|
}
|
134
137
|
export interface LiveRoomServerChatMsgView extends LiveRoomServerMinimumPayload {
|
138
|
+
audience: string[];
|
135
139
|
thread_id: string;
|
136
140
|
messages: number[];
|
137
141
|
}
|