cmd-control-client-lib 3.0.191 → 3.0.193

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 = {
@@ -222,6 +222,7 @@ export declare class CMDP_GETONLINESUMMARY implements ICOMMAND {
222
222
  }
223
223
  /**
224
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}]
225
226
  */
226
227
  export declare class CMDP_GETONLINESUMMARY_RESPONSE extends CMDP_GETONLINESUMMARY implements IRESPONSE {
227
228
  result: RESULT;
@@ -32,6 +32,8 @@ export declare type OnlineStateType = {
32
32
  lobby: EnumBooleanStringified;
33
33
  /** toy state */
34
34
  toy: EnumBooleanStringified;
35
+ /** mobile video */
36
+ mobileVideoCall?: EnumBooleanStringified;
35
37
  };
36
38
  /**
37
39
  * Transport command for online state
@@ -63,6 +65,7 @@ export declare class CMDP_GETONLINESTATES implements ICOMMAND {
63
65
  action: ACTION;
64
66
  params: baseParamsType & IMayHaveChannelId & {
65
67
  onlineOnly?: EnumBooleanStringified;
68
+ mobileVideoCallOnly?: EnumBooleanStringified;
66
69
  };
67
70
  }
68
71
  /**
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.191",
4
+ "version": "3.0.193",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },