cmd-control-client-lib 3.0.269 → 3.0.271

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.
@@ -5,9 +5,10 @@ import { IBACKENDPAYLOAD } from "./backend";
5
5
  import { ACTION } from "./command/action";
6
6
  import { baseParamsType } from "./command/baseparams";
7
7
  import { ICOMMAND, IKeyMaybeValue, IKeyValue, IRESPONSE, RESULT, StringBasedType } from "./command/icommand";
8
- import { CMDC_CMSG, EnumMessageType } from "./message";
8
+ import { CMDC_CMSG, EnumMediaType, EnumMessageType } from "./message";
9
9
  import { IB2BUserInfo, IB2BUserInfoVOne } from "./b2b/b2buserinfo";
10
10
  import { EnumBadge } from "./channelinfo";
11
+ import { ChannelMediaLinkState } from "./media";
11
12
  /**
12
13
  * channelId has Format "usrId.usrKey-partnerId.partnerKey"
13
14
  * userPoolId - business id in messenger system, number\{10,0\}
@@ -266,8 +267,11 @@ export declare type IMayHaveSearchAfter = {
266
267
  export declare type getHistoryParamsType = IMayHaveChannelId & IMayHaveSearchAfter & {
267
268
  /** filter for msgType. coma separated */
268
269
  filterMessageType?: EnumMessageType | string;
270
+ filterSysMessageKey?: ComaSeparatedValues<string>;
269
271
  /** filter for isDeleted*/
270
272
  filterDeleted?: EnumChannelFilterValues;
273
+ filterMediaType?: ComaSeparatedValues<EnumMediaType>;
274
+ filterLinkState?: ComaSeparatedValues<ChannelMediaLinkState>;
271
275
  /** number of messages, max & default is 100 */
272
276
  limit?: string;
273
277
  /** sort by sent, default is DESC */
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.269",
4
+ "version": "3.0.271",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },