cmd-control-client-lib 3.0.23 → 3.0.27
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/@types/enum-channel-flags.d.ts +2 -1
- 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 -2
- package/dist/protocol/mediaoffer.d.ts +6 -6
- package/dist/protocol/sessionstate.d.ts +5 -0
- package/package.json +1 -1
|
@@ -116,6 +116,6 @@ export declare enum ACTION {
|
|
|
116
116
|
CMDP_SIGNUP = "CMDP_SIGNUP",
|
|
117
117
|
CMDP_RESETPASSWORD = "CMDP_RESETPASSWORD",
|
|
118
118
|
CMDP_SQUERYSTARTSINGLEC2C = "CMDP_SQUERYSTARTSINGLEC2C",
|
|
119
|
-
|
|
120
|
-
|
|
119
|
+
CMDP_SOPENMEDIAOFFER = "CMDP_SOPENMEDIAOFFER",
|
|
120
|
+
CMDP_SCLOSEMEDIAOFFER = "CMDP_SCLOSEMEDIAOFFER"
|
|
121
121
|
}
|
|
@@ -4,14 +4,14 @@ import { MediaFile, MediaPrice } from "./message";
|
|
|
4
4
|
/**
|
|
5
5
|
* Frontent command for offer media.
|
|
6
6
|
*/
|
|
7
|
-
export declare class
|
|
7
|
+
export declare class CMDP_SOPENMEDIAOFFER implements ICOMMAND {
|
|
8
8
|
action: ACTION;
|
|
9
9
|
params: baseParamsType & channelIdType & MediaPrice & MediaFile;
|
|
10
10
|
}
|
|
11
11
|
/**
|
|
12
|
-
* Response command for
|
|
12
|
+
* Response command for CMDP_SOPENMEDIAOFFER.
|
|
13
13
|
*/
|
|
14
|
-
export declare class
|
|
14
|
+
export declare class CMDP_SOPENMEDIAOFFER_PRESPONSE extends CMDP_SOPENMEDIAOFFER implements IRESPONSE {
|
|
15
15
|
result: RESULT;
|
|
16
16
|
commands: ICOMMAND[];
|
|
17
17
|
values: IKeyMaybeValue;
|
|
@@ -19,14 +19,14 @@ export declare class CMDP_SMEDIAOFFEROPEN_PRESPONSE extends CMDP_SMEDIAOFFEROPEN
|
|
|
19
19
|
/**
|
|
20
20
|
* Frontent command for close of offer.
|
|
21
21
|
*/
|
|
22
|
-
export declare class
|
|
22
|
+
export declare class CMDP_SCLOSEMEDIAOFFER implements ICOMMAND {
|
|
23
23
|
action: ACTION;
|
|
24
24
|
params: baseParamsType & channelIdType;
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
|
-
* Response command for
|
|
27
|
+
* Response command for CMDP_SCLOSEMEDIAOFFER.
|
|
28
28
|
*/
|
|
29
|
-
export declare class
|
|
29
|
+
export declare class CMDP_SCLOSEMEDIAOFFER_PRESPONSE extends CMDP_SCLOSEMEDIAOFFER implements IRESPONSE {
|
|
30
30
|
result: RESULT;
|
|
31
31
|
commands: ICOMMAND[];
|
|
32
32
|
values: IKeyMaybeValue;
|
|
@@ -33,6 +33,10 @@ export declare enum SessionFlag {
|
|
|
33
33
|
BBS24 = "BBS24",
|
|
34
34
|
LOBBY_OPENED = "LOBBY_OPENED"
|
|
35
35
|
}
|
|
36
|
+
export declare enum InfoWizard {
|
|
37
|
+
FIRSTTIME = "FIRSTTIME",
|
|
38
|
+
CONTENTSELL = "CONTENTSELL"
|
|
39
|
+
}
|
|
36
40
|
/**
|
|
37
41
|
* @remarks String having <T>'s separated by ','
|
|
38
42
|
*/
|
|
@@ -71,4 +75,5 @@ export interface SessionState extends IKeyMaybeValue {
|
|
|
71
75
|
babeStation24State?: EnumBooleanStringified;
|
|
72
76
|
userLinks?: JSONString<IProductConfig["links"]>;
|
|
73
77
|
chatMotto?: string;
|
|
78
|
+
showInfoWizards?: ComaSeparatedValues<InfoWizard>;
|
|
74
79
|
}
|