cmd-control-client-lib 3.0.144 → 3.0.146

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.
@@ -244,6 +244,8 @@ export declare class CMDC_LIVESESSION implements ICOMMAND {
244
244
  export declare class CMDC_LIVECHAT implements ICOMMAND {
245
245
  action: ACTION.CMDC_LIVECHAT;
246
246
  params: {
247
+ /** the unique chat id */
248
+ chatID: string;
247
249
  /** the id of live session */
248
250
  sesID: string;
249
251
  /** start time of live chat, is between startTime and stopTime of live session */
@@ -1,3 +1,4 @@
1
+ import { EnumBooleanStringified } from "../../@types";
1
2
  import { ICOMMAND, ACTION, IRESPONSE, RESULT, IKeyMaybeValue } from "../../cmd-protocol";
2
3
  import { baseParamsType } from "../command/baseparams";
3
4
  export declare enum EnumPushNotificationFilter {
@@ -7,6 +8,7 @@ export declare enum EnumPushNotificationFilter {
7
8
  }
8
9
  export declare type UserSettings = {
9
10
  pushNotificationFilter?: EnumPushNotificationFilter;
11
+ readyForVideoCall?: EnumBooleanStringified;
10
12
  };
11
13
  /**
12
14
  * set user setting
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.144",
4
+ "version": "3.0.146",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },