cmd-control-client-lib 3.0.117 → 3.0.118
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.
|
@@ -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
|
}
|
|
@@ -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
|
+
}
|