cmd-control-client-lib 3.0.159 → 3.0.161
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
|
/**
|
|
@@ -155,5 +155,6 @@ export declare enum ACTION {
|
|
|
155
155
|
CMDP_CINIT = "CMDP_CINIT",
|
|
156
156
|
CMDP_SMSGREACTION = "CMDP_SMSGREACTION",
|
|
157
157
|
CMDC_SSTATUS = "CMDC_SSTATUS",
|
|
158
|
-
CMDP_SGETMESSAGEHISTORY = "CMDP_SGETMESSAGEHISTORY"
|
|
158
|
+
CMDP_SGETMESSAGEHISTORY = "CMDP_SGETMESSAGEHISTORY",
|
|
159
|
+
CMDP_SMSGESTIMATE = "CMDP_SMSGESTIMATE"
|
|
159
160
|
}
|