@jealous-robot-dev/shared-types-responses 1.43.6 → 1.43.8
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[];
|
@@ -111,7 +112,8 @@ export interface LiveRoomServerMicrophoneDisconnected extends LiveRoomServerMedi
|
|
111
112
|
export interface LiveRoomServerMicrophoneConnected extends LiveRoomServerMediaPayload {
|
112
113
|
}
|
113
114
|
export interface LiveRoomServerChatMessageNew extends LiveRoomServerMinimumPayload {
|
114
|
-
|
115
|
+
audience: string[];
|
116
|
+
receiver?: string;
|
115
117
|
author: string;
|
116
118
|
thread_id: string;
|
117
119
|
msg_id: number;
|
@@ -123,17 +125,20 @@ export interface LiveRoomServerChatMessageNew extends LiveRoomServerMinimumPaylo
|
|
123
125
|
};
|
124
126
|
}
|
125
127
|
export interface LiveRoomServerChatMessageEdited extends LiveRoomServerMinimumPayload {
|
128
|
+
audience: string[];
|
126
129
|
thread_id: string;
|
127
130
|
msg_id: number;
|
128
131
|
text: string;
|
129
132
|
}
|
130
133
|
export interface LiveRoomServerChatMessageDel extends LiveRoomServerMinimumPayload {
|
134
|
+
audience: string[];
|
131
135
|
thread_id: string;
|
132
136
|
msg_id: number;
|
133
137
|
}
|
134
138
|
export interface LiveRoomServerChatMsgView extends LiveRoomServerMinimumPayload {
|
135
|
-
|
139
|
+
audience: string[];
|
136
140
|
messages: number[];
|
141
|
+
thread_id: string;
|
137
142
|
}
|
138
143
|
export declare type LiveRoomServerMessageType = LiveRoomServerMicrophoneConnected | LiveRoomServerMicrophoneDisconnected | LiveRoomServerChatMessageEdited | LiveRoomServerChatMessageNew | LiveRoomServerSessionState | LiveRoomServerClientEntered | LiveRoomServerChatMsgView | LiveRoomServerChatMessageDel | LiveRoomServerSessionEnded | LiveRoomServerClientPing | LiveRoomServerClientLeft | LiveRoomServerClientClose;
|
139
144
|
export interface LiveRoomServerMessage {
|