cmd-control-client-lib 3.0.111 → 3.0.113

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.
@@ -147,7 +147,6 @@ export declare enum ACTION {
147
147
  CMDP_GETLIVEHISTORY = "CMDP_GETLIVEHISTORY",
148
148
  CMDC_LIVESESSION = "CMDC_LIVESESSION",
149
149
  CMDC_LIVECHAT = "CMDC_LIVECHAT",
150
- CMDC_STATUS = "CMDC_STATUS",
151
150
  CMDC_CHANNELMEDIASUMMARY = "CMDC_CHANNELMEDIASUMMARY",
152
151
  CMDP_SGETCHANNELDMEDIASUMMARY = "CMDP_SGETCHANNELDMEDIASUMMARY"
153
152
  }
@@ -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;
@@ -1,14 +1,5 @@
1
1
  import { EnumStreamStatusType } from "../@types";
2
2
  import { ICOMMAND, ACTION, baseParamsType, IRESPONSE, RESULT, IKeyMaybeValue } from "../cmd-protocol";
3
- export declare class CMDC_STATUS implements ICOMMAND {
4
- action: ACTION;
5
- params: IKeyMaybeValue & {
6
- [key: string]: string;
7
- proxyStateInfo?: string;
8
- channelId?: string;
9
- chatID?: string;
10
- };
11
- }
12
3
  /** */
13
4
  export declare class CMDP_SSTATUS implements ICOMMAND {
14
5
  action: ACTION;
@@ -9,5 +9,8 @@ export declare class CMDC_UPDATE implements ICOMMAND {
9
9
  action: ACTION;
10
10
  params: (ChatState | SessionState) & {
11
11
  proxyStreamInfo?: string;
12
+ proxyStateInfo?: string;
13
+ channelId?: string;
14
+ chatID?: string;
12
15
  };
13
16
  }
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.111",
4
+ "version": "3.0.113",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },