cmd-control-client-lib 3.0.112 → 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;
@@ -1,4 +1,9 @@
1
1
  import { ICOMMAND, ACTION, baseParamsType, IRESPONSE, RESULT, IKeyMaybeValue } from "../../cmd-protocol";
2
+ export declare enum EnumTicketShowStatusType {
3
+ OK = "ok",
4
+ CANCELLED = "cancelled",
5
+ DELETED = "deleted"
6
+ }
2
7
  export declare type ticketShow = {
3
8
  showId: string;
4
9
  showStart: string;
@@ -15,6 +20,7 @@ export declare type ticketShow = {
15
20
  titleEN: string;
16
21
  descriptionDE: string;
17
22
  descriptionEN: string;
23
+ status: EnumTicketShowStatusType | string;
18
24
  };
19
25
  export declare class CMDC_CTICKETSHOW implements ICOMMAND {
20
26
  action: ACTION;
@@ -66,7 +66,7 @@ export declare class CMDP_SGETUPLOADEDMEDIA_RESPONSE extends CMDP_SGETUPLOADEDME
66
66
  }
67
67
  export declare class CMDC_CHANNELMEDIASUMMARY implements ICOMMAND {
68
68
  action: ACTION;
69
- params: MediaFile & channelIdType & {
69
+ params: channelIdType & {
70
70
  outAll: string;
71
71
  outSold: string;
72
72
  outOffer: string;
@@ -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.112",
4
+ "version": "3.0.115",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },