@jealous-robot-dev/shared-types-responses 1.43.7 → 1.43.9
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.
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";
|
@@ -8,6 +8,7 @@ export interface LiveRoomStandartParticipant {
|
|
8
8
|
};
|
9
9
|
is_host: boolean;
|
10
10
|
device_id: string;
|
11
|
+
is_current: boolean;
|
11
12
|
gold_badge: boolean;
|
12
13
|
attendee_id: string;
|
13
14
|
is_video_on: boolean;
|
@@ -112,7 +113,8 @@ export interface LiveRoomServerMicrophoneDisconnected extends LiveRoomServerMedi
|
|
112
113
|
export interface LiveRoomServerMicrophoneConnected extends LiveRoomServerMediaPayload {
|
113
114
|
}
|
114
115
|
export interface LiveRoomServerChatMessageNew extends LiveRoomServerMinimumPayload {
|
115
|
-
|
116
|
+
audience: string[];
|
117
|
+
receiver?: string;
|
116
118
|
author: string;
|
117
119
|
thread_id: string;
|
118
120
|
msg_id: number;
|
@@ -136,8 +138,8 @@ export interface LiveRoomServerChatMessageDel extends LiveRoomServerMinimumPaylo
|
|
136
138
|
}
|
137
139
|
export interface LiveRoomServerChatMsgView extends LiveRoomServerMinimumPayload {
|
138
140
|
audience: string[];
|
139
|
-
thread_id: string;
|
140
141
|
messages: number[];
|
142
|
+
thread_id: string;
|
141
143
|
}
|
142
144
|
export declare type LiveRoomServerMessageType = LiveRoomServerMicrophoneConnected | LiveRoomServerMicrophoneDisconnected | LiveRoomServerChatMessageEdited | LiveRoomServerChatMessageNew | LiveRoomServerSessionState | LiveRoomServerClientEntered | LiveRoomServerChatMsgView | LiveRoomServerChatMessageDel | LiveRoomServerSessionEnded | LiveRoomServerClientPing | LiveRoomServerClientLeft | LiveRoomServerClientClose;
|
143
145
|
export interface LiveRoomServerMessage {
|