cmd-control-client-lib 3.0.113 → 3.0.115

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.
@@ -60,7 +60,7 @@ export declare class CMDP_SUPDATEGROUP_RESPONSE extends CMDP_SUPDATEGROUP {
60
60
  }
61
61
  export declare class CMDP_SGETGROUPCHANNELS implements ICOMMAND {
62
62
  action: ACTION;
63
- params: baseParamsType;
63
+ params: baseParamsType & groupIdType;
64
64
  }
65
65
  export declare class CMDP_SGETGROUPCHANNELS_RESPONSE extends CMDP_SGETGROUPCHANNELS implements IRESPONSE {
66
66
  result: RESULT;
@@ -6,7 +6,9 @@ export declare class CMDP_SSTATUS implements ICOMMAND {
6
6
  params: baseParamsType & {
7
7
  type: EnumStreamStatusType;
8
8
  value: string;
9
+ /**comaseparated list */
9
10
  channelId?: string;
11
+ /**comaseparated list */
10
12
  chatIDs: string;
11
13
  };
12
14
  }
@@ -1,16 +1,19 @@
1
1
  import { ChatState } from "./chatstate";
2
+ import { SessionState } from "./sessionstate";
2
3
  import { ACTION } from "./command/action";
3
4
  import { ICOMMAND } from "./command/icommand";
4
- import { SessionState } from "./sessionstate";
5
+ export declare type proxyStreamInfo = {
6
+ proxyStreamInfo?: string;
7
+ };
8
+ export declare type proxyStateInfo = {
9
+ proxyStateInfo?: string;
10
+ channelId?: string;
11
+ chatID?: string;
12
+ };
5
13
  /**
6
- * Update state command for vchat-core or for cmdcontrol-session
14
+ * Update command
7
15
  */
8
16
  export declare class CMDC_UPDATE implements ICOMMAND {
9
17
  action: ACTION;
10
- params: (ChatState | SessionState) & {
11
- proxyStreamInfo?: string;
12
- proxyStateInfo?: string;
13
- channelId?: string;
14
- chatID?: string;
15
- };
18
+ params: ChatState | SessionState | proxyStreamInfo | proxyStateInfo;
16
19
  }
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.113",
4
+ "version": "3.0.115",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },