cmd-control-client-lib 3.0.25 → 3.0.29

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.
@@ -32,6 +32,7 @@ export * from "./protocol/live/products-config";
32
32
  export * from "./protocol/live/streamstate";
33
33
  export * from "./protocol/live/onlinesummary";
34
34
  export * from "./protocol/live/usersettings";
35
+ export * from "./protocol/live/testchat";
35
36
  export * from "./protocol/messenger/expo";
36
37
  export * from "./protocol/messenger/signup";
37
38
  export * from "./protocol/single-c2c";
@@ -117,5 +117,6 @@ export declare enum ACTION {
117
117
  CMDP_RESETPASSWORD = "CMDP_RESETPASSWORD",
118
118
  CMDP_SQUERYSTARTSINGLEC2C = "CMDP_SQUERYSTARTSINGLEC2C",
119
119
  CMDP_SOPENMEDIAOFFER = "CMDP_SOPENMEDIAOFFER",
120
- CMDP_SCLOSEMEDIAOFFER = "CMDP_SCLOSEMEDIAOFFER"
120
+ CMDP_SCLOSEMEDIAOFFER = "CMDP_SCLOSEMEDIAOFFER",
121
+ CMDP_SSTARTTESTVIDEOCHAT = "CMDP_SSTARTTESTVIDEOCHAT"
121
122
  }
@@ -0,0 +1,38 @@
1
+ import { ACTION, baseParamsType, ICOMMAND, IRESPONSE, RESULT, StringBasedType } from "../../cmd-protocol";
2
+ /**
3
+ * 8320 only
4
+ */
5
+ export declare class CMDP_SSTARTTESTVIDEOCHAT implements ICOMMAND {
6
+ action: ACTION;
7
+ /** login params */
8
+ params: baseParamsType & {
9
+ ualias?: string;
10
+ tlimit?: string;
11
+ lang?: string;
12
+ userKey?: string;
13
+ voyeur?: string;
14
+ fsk?: string;
15
+ canSingle?: string;
16
+ canTip?: string;
17
+ canCam2Cam?: string;
18
+ tlimitNotify?: string;
19
+ publicText?: string;
20
+ guestAvatar?: string;
21
+ modelAvatar?: string;
22
+ formatsIncluded?: string;
23
+ formatsExcluded?: string;
24
+ formatsPriority?: string;
25
+ };
26
+ }
27
+ /**
28
+ * response for CMDP_SSTARTTESTVIDEOCHAT
29
+ */
30
+ export declare class CMDP_SSTARTTESTVIDEOCHAT_RESPONSE extends CMDP_SSTARTTESTVIDEOCHAT implements IRESPONSE {
31
+ result: RESULT;
32
+ commands: ICOMMAND[];
33
+ values: {
34
+ [key: string]: StringBasedType;
35
+ clientID?: string;
36
+ server?: string;
37
+ };
38
+ }
@@ -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 = "FIRST_TIME",
38
+ CONTENTSELL = "CONTENT_SELL"
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
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cmd-control-client-lib",
3
3
  "description": "Cmd-Client-Library",
4
- "version": "3.0.25",
4
+ "version": "3.0.29",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },