cmd-control-client-lib 3.0.117 → 3.0.119
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.
|
@@ -136,7 +136,7 @@ export declare enum ACTION {
|
|
|
136
136
|
CMDP_SGETGROUPCHANNELS = "CMDP_SGETGROUPCHANNELS",
|
|
137
137
|
CMDP_SGETCHANNELGROUPS = "CMDP_SGETCHANNELGROUPS",
|
|
138
138
|
CMDP_SADDCHANNELTOGROUP = "CMDP_SADDCHANNELTOGROUP",
|
|
139
|
-
|
|
139
|
+
CMDP_SDELCHANNELFROMGROUP = "CMDP_SDELCHANNELFROMGROUP",
|
|
140
140
|
CMDC_CTICKETSHOW = "CMDC_CTICKETSHOW",
|
|
141
141
|
CMDP_SGETTICKETSHOWS = "CMDP_SGETTICKETSHOWS",
|
|
142
142
|
CMDP_SUPSERTTICKETSHOW = "CMDP_SUPSERTTICKETSHOW",
|
|
@@ -148,5 +148,7 @@ export declare enum ACTION {
|
|
|
148
148
|
CMDC_LIVESESSION = "CMDC_LIVESESSION",
|
|
149
149
|
CMDC_LIVECHAT = "CMDC_LIVECHAT",
|
|
150
150
|
CMDC_CHANNELMEDIASUMMARY = "CMDC_CHANNELMEDIASUMMARY",
|
|
151
|
-
CMDP_SGETCHANNELDMEDIASUMMARY = "CMDP_SGETCHANNELDMEDIASUMMARY"
|
|
151
|
+
CMDP_SGETCHANNELDMEDIASUMMARY = "CMDP_SGETCHANNELDMEDIASUMMARY",
|
|
152
|
+
CMDP_SGETSEDCARDPICTURES = "CMDP_SGETSEDCARDPICTURES",
|
|
153
|
+
CMDC_SEDCARDPICTURE = "CMDC_SEDCARDPICTURE"
|
|
152
154
|
}
|
|
@@ -88,11 +88,11 @@ export declare class CMDP_SADDCHANNELTOGROUP_RESPONSE extends CMDP_SADDCHANNELTO
|
|
|
88
88
|
commands: CMDC_CHANNELGROUP[];
|
|
89
89
|
values: IKeyMaybeValue;
|
|
90
90
|
}
|
|
91
|
-
export declare class
|
|
91
|
+
export declare class CMDP_SDELCHANNELFROMGROUP implements ICOMMAND {
|
|
92
92
|
action: ACTION;
|
|
93
93
|
params: baseParamsType & channelIdType & groupIdType;
|
|
94
94
|
}
|
|
95
|
-
export declare class
|
|
95
|
+
export declare class CMDP_SDELCHANNELFROMGROUP_RESPONSE extends CMDP_SDELCHANNELFROMGROUP {
|
|
96
96
|
commands: CMDC_CHANNELGROUP[];
|
|
97
97
|
values: IKeyMaybeValue;
|
|
98
98
|
}
|
|
@@ -10,7 +10,10 @@ export declare type ticketShow = {
|
|
|
10
10
|
showStart: string;
|
|
11
11
|
/** json datetime */
|
|
12
12
|
showEnd: string;
|
|
13
|
+
/** show Name, readonly*/
|
|
13
14
|
showName: string;
|
|
15
|
+
/** show image url*/
|
|
16
|
+
showImageUrl: string;
|
|
14
17
|
/** readonly const */
|
|
15
18
|
showCurrency: EnumCurrency;
|
|
16
19
|
/** float F2 */
|
|
@@ -86,3 +89,28 @@ export declare class CMDP_SSTOPTICKETSHOW_RESPONSE extends CMDP_SSTOPTICKETSHOW
|
|
|
86
89
|
commands: ICOMMAND[];
|
|
87
90
|
values: IKeyMaybeValue;
|
|
88
91
|
}
|
|
92
|
+
/** the sedcardpicrure */
|
|
93
|
+
export declare class CMDC_SEDCARDPICTURE implements ICOMMAND {
|
|
94
|
+
action: ACTION;
|
|
95
|
+
params: {
|
|
96
|
+
/** sedcards.fsk12, sedcards.fsk16 ununsed for mnow */
|
|
97
|
+
type: string;
|
|
98
|
+
/** sedcart, avatar, unused for now */
|
|
99
|
+
subtype: string;
|
|
100
|
+
/**use the imageSrc as value for showImageUrl */
|
|
101
|
+
imgSrc: string;
|
|
102
|
+
/** use imgSrcSet for UI only*/
|
|
103
|
+
imgSrcSet: string;
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
/** get bitmap urls that can be used for show.imageUrl */
|
|
107
|
+
export declare class CMDP_SGETSEDCARDPICTURES implements ICOMMAND {
|
|
108
|
+
action: ACTION;
|
|
109
|
+
params: baseParamsType;
|
|
110
|
+
}
|
|
111
|
+
/** reponse */
|
|
112
|
+
export declare class CMDP_SGETSEDCARDPICTURES_RESPONSE extends CMDP_SGETSEDCARDPICTURES implements IRESPONSE {
|
|
113
|
+
result: RESULT;
|
|
114
|
+
commands: CMDC_SEDCARDPICTURE[];
|
|
115
|
+
values: IKeyMaybeValue;
|
|
116
|
+
}
|