cmd-control-client-lib 3.0.257 → 3.0.259

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.
@@ -176,6 +176,10 @@ export declare type channelIdFilter = {
176
176
  filterMuted?: EnumChannelFilterValues;
177
177
  /** filter by VIP status, default any */
178
178
  filterVIP?: EnumChannelFilterValues;
179
+ /** has a video chat */
180
+ filterVideoChat?: EnumChannelFilterValues;
181
+ /** cant sent message*/
182
+ filterBlockedOutbound?: EnumChannelFilterValues;
179
183
  /** filter by product id, default empty*/
180
184
  filterProductId?: EnumProductId;
181
185
  /** filter by banned */
@@ -277,7 +281,9 @@ export declare type getHistoryParamsType = IMayHaveChannelId & IMayHaveSearchAft
277
281
  */
278
282
  export declare class CMDP_GETHISTORY implements ICOMMAND {
279
283
  action: ACTION;
280
- params: baseParamsType & getHistoryParamsType;
284
+ params: baseParamsType & getHistoryParamsType & {
285
+ getUnseenButDeleted?: EnumBooleanStringified;
286
+ };
281
287
  }
282
288
  /**
283
289
  * Response for CMDP_GETHISTORY
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.257",
4
+ "version": "3.0.259",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },