cmd-control-client-lib 3.0.190 → 3.0.192

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.
@@ -196,6 +196,9 @@ export declare type channelIdFilter = {
196
196
  filterActive?: EnumChannelFilterValues;
197
197
  /** filter channels to exclude */
198
198
  filterExcludeChannelId?: ComaSeparatedValues<string> | string;
199
+ /** filter by weight */
200
+ filterMinWeight?: string;
201
+ filterMaxWeight?: string;
199
202
  };
200
203
  export declare type channelIdSelectOrFilter = channelIdSelector | channelIdFilter;
201
204
  export declare type getChannelsParamsType = {
@@ -115,7 +115,6 @@ export declare class CMDC_UPDATE_CHAT implements ICOMMAND {
115
115
  action: ACTION;
116
116
  params: SChatInfo & ChatOnlineStats;
117
117
  }
118
- /** CMDC_CEXIT & CMDP_CLOGOUT */
119
118
  export declare enum EndChatType {
120
119
  PREPARED = "PREPARED",
121
120
  LOBBY = "LOBBY",
@@ -223,6 +222,7 @@ export declare class CMDP_GETONLINESUMMARY implements ICOMMAND {
223
222
  }
224
223
  /**
225
224
  * Response for CMDP_GETONLINESUMMARY
225
+ * [{"2023-07-07":2726},{"2023-07-19":7663},{"2023-08-02":1479},{"2023-07-04":97},{"2023-07-11":4327},{"2023-07-18":1804},{"2023-07-27":3297}]
226
226
  */
227
227
  export declare class CMDP_GETONLINESUMMARY_RESPONSE extends CMDP_GETONLINESUMMARY implements IRESPONSE {
228
228
  result: RESULT;
@@ -263,6 +263,8 @@ export declare class CMDC_LIVECHAT implements ICOMMAND {
263
263
  ualias?: string;
264
264
  /** channelId, if given */
265
265
  channelId?: string;
266
+ /** endChatType*/
267
+ endChatType?: EndChatType;
266
268
  };
267
269
  }
268
270
  /**
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.190",
4
+ "version": "3.0.192",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },