cmd-control-client-lib 3.0.167 → 3.0.168

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.
@@ -69,6 +69,7 @@ export declare class CMDP_START_STREAM_PREVIEW_RESPONSE extends CMDP_START_STREA
69
69
  commands: ICOMMAND[];
70
70
  values: {
71
71
  dataURL: string;
72
+ mediaJpegWsUrl: string;
72
73
  };
73
74
  }
74
75
  export declare class CMDP_STOP_STREAM_PREVIEW implements ICOMMAND {
@@ -2,7 +2,7 @@ import { EnumBooleanStringified } from "../@types/enum-boolean-stringified";
2
2
  import { ACTION } from "./command/action";
3
3
  import { baseParamsType } from "./command/baseparams";
4
4
  import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "./command/icommand";
5
- import { IMayHaveChannelId, partnerIdKeyType } from "./channel";
5
+ import { channelIdType, IMayHaveChannelId, partnerIdKeyType } from "./channel";
6
6
  /** online state of session */
7
7
  export declare type OnlineStateType = {
8
8
  partnerId: string;
@@ -38,7 +38,7 @@ export declare type OnlineStateType = {
38
38
  */
39
39
  export declare class CMDC_ONLINESTATE implements ICOMMAND {
40
40
  action: ACTION;
41
- params: OnlineStateType;
41
+ params: OnlineStateType & channelIdType;
42
42
  }
43
43
  /**
44
44
  * Query online state of contact
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.167",
4
+ "version": "3.0.168",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },