cmd-control-client-lib 3.0.157 → 3.0.159

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.
@@ -1,5 +1,5 @@
1
1
  import { JSONString, EnumQueryBackendSubAction } from "../@types";
2
- import { IMayHaveChannelId, usrKeyType } from "./channel";
2
+ import { channelIdType, IMayHaveChannelId, usrKeyType } from "./channel";
3
3
  import { ACTION } from "./command/action";
4
4
  import { baseParamsType } from "./command/baseparams";
5
5
  import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "./command/icommand";
@@ -21,7 +21,7 @@ declare type TSubActionParams = {
21
21
  */
22
22
  export declare class CMDP_QUERYBACKEND implements ICOMMAND, IBACKENDPAYLOAD {
23
23
  action: ACTION;
24
- params: TSubActionParams & baseParamsType;
24
+ params: TSubActionParams & baseParamsType & channelIdType;
25
25
  /** if jwt-session, any json-payload for transport to backend */
26
26
  payload?: JSONString<any>;
27
27
  }
@@ -115,14 +115,17 @@ export declare class CMDC_UPDATE_CHAT implements ICOMMAND {
115
115
  action: ACTION;
116
116
  params: SChatInfo & ChatOnlineStats;
117
117
  }
118
- /**unused */
118
+ /** CMDC_CEXIT & CMDP_CLOGOUT */
119
119
  export declare enum EndChatType {
120
120
  PREPARED = "PREPARED",
121
- LOBBY = "LOBBY ",
121
+ LOBBY = "LOBBY",
122
+ ADMIN = "ADMIN",
122
123
  SINGLEC2C = "SINGLEC2C",
124
+ SINGLE = "SINGLE",
123
125
  LIVE = "LIVE",
124
126
  VOYEUR = "VOYEUR",
125
127
  VOYEUR2S = "VOYEUR2S",
128
+ PREVIEW = "PREVIEW",
126
129
  PREVIEW_VIP = "PREVIEW_VIP",
127
130
  PREVIEW_SHORT = "PREVIEW_SHORT",
128
131
  PREVIEW_VOUCHER = "PREVIEW_VOUCHER"
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.157",
4
+ "version": "3.0.159",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },