cmd-control-client-lib 3.0.364 → 3.0.369
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.
|
@@ -151,6 +151,10 @@ export declare type channelIdSelector = {
|
|
|
151
151
|
selectGroupId?: ComaSeparatedValues<string> | string;
|
|
152
152
|
selectBadges?: ComaSeparatedValues<EnumBadge> | string;
|
|
153
153
|
selectFollowMe?: EnumBooleanStringified;
|
|
154
|
+
selectOnline?: EnumBooleanStringified;
|
|
155
|
+
/**
|
|
156
|
+
* @deprecated
|
|
157
|
+
*/
|
|
154
158
|
groupId?: ComaSeparatedValues<string> | string;
|
|
155
159
|
/**
|
|
156
160
|
* @deprecated/ignored
|
|
@@ -201,7 +205,7 @@ export declare type channelIdFilter = {
|
|
|
201
205
|
/** filter by group id, coma separated */
|
|
202
206
|
filterGroupId?: string;
|
|
203
207
|
/** filter by badges */
|
|
204
|
-
|
|
208
|
+
filterBadges?: ComaSeparatedValues<EnumBadge> | string;
|
|
205
209
|
/** filterActive */
|
|
206
210
|
filterActive?: EnumChannelFilterValues;
|
|
207
211
|
/** filter channels to exclude */
|
|
@@ -464,8 +468,10 @@ export declare type channelSummaryInfo = {
|
|
|
464
468
|
online: string;
|
|
465
469
|
/** number of active channels */
|
|
466
470
|
active: string;
|
|
467
|
-
/** number of follower*/
|
|
471
|
+
/** number of follower */
|
|
468
472
|
followMe: string;
|
|
473
|
+
/** partner */
|
|
474
|
+
product3: string;
|
|
469
475
|
};
|
|
470
476
|
/**
|
|
471
477
|
* channel summary
|
|
@@ -200,11 +200,23 @@ export declare type clipSnapshot = {
|
|
|
200
200
|
time: number;
|
|
201
201
|
imgSrc: string;
|
|
202
202
|
};
|
|
203
|
+
export declare type clipStatus = {
|
|
204
|
+
index: string;
|
|
205
|
+
name: string;
|
|
206
|
+
progress: number;
|
|
207
|
+
};
|
|
208
|
+
export declare class CMDC_CLIPSTATUS implements ICOMMAND {
|
|
209
|
+
action: ACTION;
|
|
210
|
+
params: clientID & {
|
|
211
|
+
status: JSONString<clipStatus[]>;
|
|
212
|
+
};
|
|
213
|
+
}
|
|
203
214
|
export declare class CMDC_CLIP implements ICOMMAND {
|
|
204
215
|
action: ACTION;
|
|
205
216
|
params: clientID & {
|
|
206
217
|
chatID: string;
|
|
207
218
|
clipID: string;
|
|
219
|
+
index: string;
|
|
208
220
|
name: string;
|
|
209
221
|
duration: string;
|
|
210
222
|
price: string;
|
|
@@ -216,5 +216,6 @@ export declare enum ACTION {
|
|
|
216
216
|
CMDP_SDELETETPLCATEGORY = "CMDP_SDELETETPLCATEGORY",
|
|
217
217
|
CMDP_SGETCHANNELMESSAGE = "CMDP_SGETCHANNELMESSAGE",
|
|
218
218
|
CMDP_SGETMEDIAHISTORY = "CMDP_SGETMEDIAHISTORY",
|
|
219
|
-
CMDP_SGETMEDIAHISTORYSUMMARY = "CMDP_SGETMEDIAHISTORYSUMMARY"
|
|
219
|
+
CMDP_SGETMEDIAHISTORYSUMMARY = "CMDP_SGETMEDIAHISTORYSUMMARY",
|
|
220
|
+
CMDC_CLIPSTATUS = "CMDC_CLIPSTATUS"
|
|
220
221
|
}
|
|
@@ -76,8 +76,9 @@ export interface SessionState extends IKeyMaybeValue {
|
|
|
76
76
|
service0900Status?: EnumService0900Status;
|
|
77
77
|
/** the live preview*/
|
|
78
78
|
livePreviewState?: EnumBooleanStringified;
|
|
79
|
-
/**
|
|
79
|
+
/** deprecated, use MSettings */
|
|
80
80
|
showBabeStation24Tab?: EnumBooleanStringified;
|
|
81
|
+
/** deprecated, use MSettings */
|
|
81
82
|
babeStation24State?: EnumBooleanStringified;
|
|
82
83
|
showMobileVideoCallTab?: EnumBooleanStringified;
|
|
83
84
|
mobileVideoCallState?: EnumBooleanStringified;
|
|
@@ -97,6 +98,7 @@ export interface SessionState extends IKeyMaybeValue {
|
|
|
97
98
|
showToyTab?: EnumBooleanStringified;
|
|
98
99
|
webtoken?: string;
|
|
99
100
|
showBumpTab?: EnumBooleanStringified;
|
|
101
|
+
/** deprecated, use MSettings */
|
|
100
102
|
showTemplateTab?: EnumBooleanStringified;
|
|
101
103
|
selfieChannelId?: string;
|
|
102
104
|
}
|