cmd-control-client-lib 3.0.223 → 3.0.225

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.
@@ -16,6 +16,8 @@ export declare enum EnumFormatValues {
16
16
  export declare type baseParamsType = {
17
17
  /** your app instance id, internal */
18
18
  _iid?: string;
19
+ /** unique command id, internal */
20
+ _uniq?: string;
19
21
  /** your app type */
20
22
  agent?: CmdClientAgent;
21
23
  /** your sessionID from CMDP_LOGIN_RESPONSE, Ignored in CMDP_LOGIN, CMDP_INIT */
@@ -261,8 +261,8 @@ export declare class CMDC_LIVECHAT implements ICOMMAND {
261
261
  exitCode: string;
262
262
  /** VIDEO, VOYEUR, SINGLE */
263
263
  type: string;
264
- /** user name if given */
265
- ualias?: string;
264
+ /** username (user alias) */
265
+ login?: string;
266
266
  /** channelId, if given */
267
267
  channelId?: string;
268
268
  /** endChatType*/
@@ -340,5 +340,8 @@ export declare enum SystemMessageKey {
340
340
  h_video_delayed = "h_video_delayed",
341
341
  h_video_reconnect = "h_video_reconnect",
342
342
  feedPostBought = "feedPostBought",
343
- feedPostTipped = "feedPostTipped"
343
+ feedPostTipped = "feedPostTipped",
344
+ h_chat_mobilevideocall_missed = "h_chat_mobilevideocall_missed",
345
+ h_chat_mobilevideocall_started = "h_chat_mobilevideocall_started",
346
+ h_chat_mobilevideocall_ended = "h_chat_mobilevideocall_ended"
344
347
  }
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.223",
4
+ "version": "3.0.225",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },