cmd-control-client-lib 3.0.82 → 3.0.85

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.
@@ -322,6 +322,8 @@ export declare type channelSummaryInfo = {
322
322
  unseenWithoutArchived: string;
323
323
  /** number of unanswered channels */
324
324
  unanswered: string;
325
+ /** number of unanswered channels */
326
+ unansweredWithoutArchived: string;
325
327
  /** last time of incoming message */
326
328
  lastTimeIn: string;
327
329
  /** last time of outgoing message */
@@ -134,5 +134,6 @@ export declare enum ACTION {
134
134
  CMDP_SDELGROUP = "CMDP_SDELGROUP",
135
135
  CMDP_SGETGROUPCHANNELS = "CMDP_SGETGROUPCHANNELS",
136
136
  CMDP_SADDCHANNELTOGROUP = "CMDP_SADDCHANNELTOGROUP",
137
- CMDP_SDELLCHANNELFROMGROUP = "CMDP_SDELLCHANNELFROMGROUP"
137
+ CMDP_SDELLCHANNELFROMGROUP = "CMDP_SDELLCHANNELFROMGROUP",
138
+ CMDC_CTICKETSHOW = "CMDC_CTICKETSHOW"
138
139
  }
@@ -0,0 +1,14 @@
1
+ import { ICOMMAND, ACTION } from "../../cmd-protocol";
2
+ export declare type ticketShow = {
3
+ showId: string;
4
+ showStart: string;
5
+ showEnd: string;
6
+ showName: string;
7
+ showCurrency: string;
8
+ showPrice: string;
9
+ showSales: string;
10
+ };
11
+ export declare class CMDC_CTICKETSHOW implements ICOMMAND {
12
+ action: ACTION;
13
+ params: ticketShow;
14
+ }
@@ -69,6 +69,7 @@ export declare type MessageParams = IMayHaveChannelId & {
69
69
  currency?: EnumCurrency;
70
70
  link?: string;
71
71
  clientData?: string;
72
+ isBulk?: EnumBooleanStringified;
72
73
  };
73
74
  export declare type MediaMd5 = {
74
75
  mediaMd5?: string;
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.82",
4
+ "version": "3.0.85",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },