cmd-control-client-lib 3.0.49 → 3.0.60
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.
- package/dist/cmd-control-client-lib.js +1 -1
- package/dist/cmd-control-client-lib.js.map +1 -1
- package/dist/protocol/command/action.d.ts +2 -1
- package/dist/protocol/live/live-commands.d.ts +2 -1
- package/dist/protocol/mediaoffer.d.ts +15 -0
- package/dist/protocol/sessionstate.d.ts +2 -0
- package/package.json +1 -1
|
@@ -122,5 +122,6 @@ export declare enum ACTION {
|
|
|
122
122
|
CMDP_SGETTICKETS = "CMDP_SGETTICKETS",
|
|
123
123
|
CMDP_SCHECKUPLOADEDMEDIA = "CMDP_SCHECKUPLOADEDMEDIA",
|
|
124
124
|
CMDP_SGETUPLOADEDMEDIA = "CMDP_SGETUPLOADEDMEDIA",
|
|
125
|
-
CMDC_CMEDIA = "CMDC_CMEDIA"
|
|
125
|
+
CMDC_CMEDIA = "CMDC_CMEDIA",
|
|
126
|
+
CMDP_SCLOSETICKED = "CMDP_SCLOSETICKED"
|
|
126
127
|
}
|
|
@@ -131,7 +131,8 @@ export declare enum ChatFlags {
|
|
|
131
131
|
TIP = "TIP",
|
|
132
132
|
GUESTCHAT = "GUESTCHAT",
|
|
133
133
|
MOBILE = "MOBILE",
|
|
134
|
-
FLATRATE = "FLATRATE"
|
|
134
|
+
FLATRATE = "FLATRATE",
|
|
135
|
+
SINGLEC2C = "SINGLEC2C"
|
|
135
136
|
}
|
|
136
137
|
export declare class SChatInfo implements IKeyMaybeValue {
|
|
137
138
|
[key: string]: string;
|
|
@@ -53,4 +53,19 @@ export declare class CMDP_SGETTICKETS_PRESPONSE extends CMDP_SGETTICKETS impleme
|
|
|
53
53
|
commands: CMDC_CMEDIA[];
|
|
54
54
|
values: IKeyMaybeValue;
|
|
55
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* Frontend command for close of ticket.
|
|
58
|
+
*/
|
|
59
|
+
export declare class CMDP_SCLOSETICKED implements ICOMMAND {
|
|
60
|
+
action: ACTION;
|
|
61
|
+
params: baseParamsType & channelIdType;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Response command for CMDP_SCLOSETICKED.
|
|
65
|
+
*/
|
|
66
|
+
export declare class CMDP_SCLOSETICKED_PRESPONSE extends CMDP_SCLOSETICKED implements IRESPONSE {
|
|
67
|
+
result: RESULT;
|
|
68
|
+
commands: ICOMMAND[];
|
|
69
|
+
values: IKeyMaybeValue;
|
|
70
|
+
}
|
|
56
71
|
export {};
|
|
@@ -73,6 +73,8 @@ export interface SessionState extends IKeyMaybeValue {
|
|
|
73
73
|
livePreviewState?: EnumBooleanStringified;
|
|
74
74
|
/** */
|
|
75
75
|
babeStation24State?: EnumBooleanStringified;
|
|
76
|
+
canOpenLobby?: EnumBooleanStringified;
|
|
77
|
+
canSellSingleC2CTicket?: EnumBooleanStringified;
|
|
76
78
|
userLinks?: JSONString<IProductConfig["links"]>;
|
|
77
79
|
chatMotto?: string;
|
|
78
80
|
showInfoWizards?: ComaSeparatedValues<InfoWizard>;
|