cmd-control-client-lib 3.0.342 → 3.0.346

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.
@@ -48,4 +48,5 @@ export * from "./protocol/clivechat";
48
48
  export * from "./protocol/feedback";
49
49
  export * from "./protocol/messenger/videosdk";
50
50
  export * from "./protocol/messenger/mvcschedule";
51
+ export * from "./protocol/msgtemplate";
51
52
  export { SupportedLanguage, CmdClientAgent, EnumFormatValues, baseParamsType } from "./protocol/command/baseparams";
@@ -167,6 +167,8 @@ export declare type channelIdFilter = {
167
167
  filterAdvertised?: EnumChannelFilterValues;
168
168
  /** filter by favorite flag, default any */
169
169
  filterRegularCustomer?: EnumChannelFilterValues;
170
+ /** filter by favorite flag, default any */
171
+ filterFollowMe?: EnumChannelFilterValues;
170
172
  /** filter by unseen, default any */
171
173
  filterUnseen?: EnumChannelFilterValues;
172
174
  /** filter by unanswered, default any */
@@ -78,6 +78,8 @@ export declare type MessageParams = IMayHaveChannelId & {
78
78
  /** reaction */
79
79
  reaction?: string;
80
80
  reactionTime?: string;
81
+ /** template*/
82
+ templateId?: string;
81
83
  };
82
84
  export declare type MediaMd5 = {
83
85
  mediaMd5?: string;
@@ -7,7 +7,7 @@ import { EnumBooleanStringified } from "../@types";
7
7
  export declare type templateCategoryType = {
8
8
  categoryId: string;
9
9
  categoryName: string;
10
- categoryDeleted: EnumBooleanStringified;
10
+ categoryDeleted?: EnumBooleanStringified;
11
11
  };
12
12
  export declare class CMDC_TPLCATEGORY implements ICOMMAND {
13
13
  action: ACTION;
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.342",
4
+ "version": "3.0.346",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },