cmd-control-client-lib 3.0.205 → 3.0.207

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.
@@ -33,7 +33,7 @@ declare type TSubActionParams = {
33
33
  subaction: EnumQueryBackendSubAction;
34
34
  };
35
35
  /**
36
- * common command for take a backend action
36
+ * common command for take a backend action
37
37
  */
38
38
  export declare class CMDP_QUERYBACKEND implements ICOMMAND {
39
39
  action: ACTION;
@@ -420,6 +420,8 @@ export declare type channelSummaryInfo = {
420
420
  vip: string;
421
421
  /** number of online channels */
422
422
  online: string;
423
+ /** number of active channels */
424
+ active: string;
423
425
  };
424
426
  /**
425
427
  * channel summary
@@ -99,6 +99,8 @@ export declare class SChatInfo implements IKeyMaybeValue {
99
99
  voyeur2single?: EnumBooleanDigitized;
100
100
  /** the intention of chat type from guest. this is not actual chat type, only intention */
101
101
  chattype: EnumIntentionString | string;
102
+ /** preview state: "1" if the preview is run, "0" if the preview is stopped */
103
+ previewRun?: "1" | "0" | string;
102
104
  }
103
105
  export declare class CMDC_CINIT implements ICOMMAND {
104
106
  action: ACTION;
@@ -222,7 +224,6 @@ export declare class CMDP_GETONLINESUMMARY implements ICOMMAND {
222
224
  }
223
225
  /**
224
226
  * 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
227
  */
227
228
  export declare class CMDP_GETONLINESUMMARY_RESPONSE extends CMDP_GETONLINESUMMARY implements IRESPONSE {
228
229
  result: RESULT;
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.205",
4
+ "version": "3.0.207",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },