cmd-control-client-lib 3.0.350 → 3.0.355

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,7 +5,7 @@ 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, EnumMediaType, EnumMessageType } from "./message";
8
+ import { CMDC_CMSG, EnumMediaType, EnumMessageDirection, EnumMessageType } from "./message";
9
9
  import { IB2BUserInfo, IB2BUserInfoVOne } from "./b2b/b2buserinfo";
10
10
  import { EnumBadge } from "./channelinfo";
11
11
  import { ChannelMediaLinkState } from "./media";
@@ -275,6 +275,7 @@ export declare type getHistoryParamsType = IMayHaveChannelId & IMayHaveSearchAft
275
275
  filterDeleted?: EnumChannelFilterValues;
276
276
  filterMediaType?: ComaSeparatedValues<EnumMediaType>;
277
277
  filterLinkState?: ComaSeparatedValues<ChannelMediaLinkState>;
278
+ filterDirection?: EnumMessageDirection;
278
279
  /** number of messages, max & default is 100 */
279
280
  limit?: string;
280
281
  /** sort by sent, default is DESC */
@@ -82,6 +82,9 @@ export declare class CMDP_SGETUPLOADEDMEDIA2 implements ICOMMAND {
82
82
  /** get only mediaMd5, channelId, linkState, linkDate and cut off all mediaXXX fields, default is false */
83
83
  dropMediaFields?: EnumBooleanStringifiedExtended;
84
84
  sortBy?: "linkDate" | "mediaCreated" | string;
85
+ } & {
86
+ /** B2B only */
87
+ usrKey?: string;
85
88
  };
86
89
  }
87
90
  export declare class CMDP_SGETUPLOADEDMEDIA2_RESPONSE extends CMDP_SGETUPLOADEDMEDIA2 implements IRESPONSE {
@@ -53,6 +53,7 @@ export declare type messageTemplateType = MessageParams & MediaFile & MediaOffer
53
53
  templateDeleted?: EnumBooleanStringified;
54
54
  templateSent?: string;
55
55
  templateBought?: string;
56
+ favorite?: EnumBooleanStringified;
56
57
  } & {
57
58
  umaId?: string;
58
59
  };
@@ -97,4 +97,5 @@ export interface SessionState extends IKeyMaybeValue {
97
97
  webtoken?: string;
98
98
  showBumpTab?: EnumBooleanStringified;
99
99
  showTemplateTab?: EnumBooleanStringified;
100
+ selfieChannelId?: string;
100
101
  }
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.350",
4
+ "version": "3.0.355",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },