cmd-control-client-lib 3.0.142 → 3.0.145
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.
|
@@ -146,6 +146,8 @@ export declare type channelIdSelector = {
|
|
|
146
146
|
selectAdvertised?: EnumBooleanStringified;
|
|
147
147
|
selectPinned?: EnumBooleanStringified;
|
|
148
148
|
selectVip?: EnumBooleanStringified;
|
|
149
|
+
selectGroupId?: ComaSeparatedValues<string> | string;
|
|
150
|
+
/** depricated */
|
|
149
151
|
groupId?: ComaSeparatedValues<string> | string;
|
|
150
152
|
};
|
|
151
153
|
export declare type getChannelsParamsType = {
|
|
@@ -244,6 +244,8 @@ export declare class CMDC_LIVESESSION implements ICOMMAND {
|
|
|
244
244
|
export declare class CMDC_LIVECHAT implements ICOMMAND {
|
|
245
245
|
action: ACTION.CMDC_LIVECHAT;
|
|
246
246
|
params: {
|
|
247
|
+
/** the unique chat id */
|
|
248
|
+
chatID: string;
|
|
247
249
|
/** the id of live session */
|
|
248
250
|
sesID: string;
|
|
249
251
|
/** start time of live chat, is between startTime and stopTime of live session */
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { EnumStreamStatusType } from "../@types";
|
|
2
2
|
import { ICOMMAND, ACTION, baseParamsType, IRESPONSE, RESULT, IKeyMaybeValue } from "../cmd-protocol";
|
|
3
3
|
export declare enum EnumPlayerEventType {
|
|
4
|
-
Play =
|
|
5
|
-
Error =
|
|
6
|
-
Warn =
|
|
7
|
-
Info =
|
|
4
|
+
Play = "Play",
|
|
5
|
+
Error = "Error",
|
|
6
|
+
Warn = "Warn",
|
|
7
|
+
Info = "Info"
|
|
8
8
|
}
|
|
9
9
|
/** for EnumStreamStatusType.MEDIA_PLAYER_EVENT, value = JSON.stringify(MediaPlayerEvent) */
|
|
10
10
|
export declare class MediaPlayerEvent {
|