cmd-control-client-lib 3.0.160 → 3.0.162

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.
@@ -275,6 +275,10 @@ export declare class CMDP_GETHISTORY_RESPONSE extends CMDP_GETHISTORY implements
275
275
  /** unused */
276
276
  values: IKeyMaybeValue;
277
277
  }
278
+ export declare enum EnumLimitType {
279
+ TOTAL = "total",
280
+ separately = "separately"
281
+ }
278
282
  /**
279
283
  * Get messages history for channel
280
284
  * Multichannel command
@@ -282,7 +286,10 @@ export declare class CMDP_GETHISTORY_RESPONSE extends CMDP_GETHISTORY implements
282
286
  export declare class CMDP_SGETMESSAGEHISTORY implements ICOMMAND {
283
287
  action: ACTION;
284
288
  params: baseParamsType & getHistoryParamsType & {
289
+ /** chat id list, comaseparated */
285
290
  chatIDs?: string;
291
+ /** limit type, default total */
292
+ limitType?: EnumLimitType;
286
293
  };
287
294
  }
288
295
  /**
@@ -55,7 +55,7 @@ export declare class CMDP_TRACERT_REPLY_RESPONSE extends CMDP_TRACERT_REPLY impl
55
55
  export declare class CMDP_FSK16 implements ICOMMAND {
56
56
  action: ACTION.CMDP_FSK16;
57
57
  params: baseParamsType & {
58
- fsk16: EnumBooleanStringified;
58
+ fsk16: EnumBooleanStringifiedExtended;
59
59
  };
60
60
  }
61
61
  export declare class CMDP_START_STREAM_PREVIEW implements ICOMMAND {
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.160",
4
+ "version": "3.0.162",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },