cmd-control-client-lib 3.0.342 → 3.0.347
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.
- package/README.md +3 -1
- package/dist/cmd-control-client-lib.js +1 -1
- package/dist/cmd-control-client-lib.js.map +1 -1
- package/dist/cmd-protocol.d.ts +1 -0
- package/dist/protocol/channel.d.ts +4 -0
- package/dist/protocol/message.d.ts +2 -0
- package/dist/protocol/msgtemplate.d.ts +1 -1
- package/package.json +1 -1
package/dist/cmd-protocol.d.ts
CHANGED
|
@@ -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 */
|
|
@@ -439,6 +441,8 @@ export declare type channelSummaryInfo = {
|
|
|
439
441
|
online: string;
|
|
440
442
|
/** number of active channels */
|
|
441
443
|
active: string;
|
|
444
|
+
/** number of follower*/
|
|
445
|
+
followMe: string;
|
|
442
446
|
};
|
|
443
447
|
/**
|
|
444
448
|
* channel summary
|
|
@@ -7,7 +7,7 @@ import { EnumBooleanStringified } from "../@types";
|
|
|
7
7
|
export declare type templateCategoryType = {
|
|
8
8
|
categoryId: string;
|
|
9
9
|
categoryName: string;
|
|
10
|
-
categoryDeleted
|
|
10
|
+
categoryDeleted?: EnumBooleanStringified;
|
|
11
11
|
};
|
|
12
12
|
export declare class CMDC_TPLCATEGORY implements ICOMMAND {
|
|
13
13
|
action: ACTION;
|