cmd-control-client-lib 3.0.116 → 3.0.117

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.
@@ -1,5 +1,5 @@
1
1
  import { EnumBooleanStringified } from "../../@types";
2
- import { channelIdType, CMDC_CHANNEL } from "../channel";
2
+ import { channelIdType, CMDC_CHANNEL, EnumChannelFilterValues } from "../channel";
3
3
  import { ACTION } from "../command/action";
4
4
  import { baseParamsType } from "../command/baseparams";
5
5
  import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "../command/icommand";
@@ -14,6 +14,8 @@ export declare type groupType = groupIdType & {
14
14
  groupCreated: string;
15
15
  /** channel counter */
16
16
  groupChannels: string;
17
+ /** status */
18
+ groupActive?: "0" | "1" | string;
17
19
  };
18
20
  export declare class CMDC_GROUP implements ICOMMAND {
19
21
  action: ACTION;
@@ -28,7 +30,9 @@ export declare class CMDC_CHANNELGROUP extends CMDC_GROUP {
28
30
  }
29
31
  export declare class CMDP_SGETGROUPS implements ICOMMAND {
30
32
  action: ACTION;
31
- params: baseParamsType;
33
+ params: baseParamsType & {
34
+ filterActive?: EnumChannelFilterValues | string;
35
+ };
32
36
  }
33
37
  export declare class CMDP_SGETGROUPS_RESPONSE extends CMDP_SGETGROUPS implements IRESPONSE {
34
38
  result: RESULT;
@@ -51,7 +55,7 @@ export declare class CMDP_SUPDATEGROUP implements ICOMMAND {
51
55
  /** set for change the display name */
52
56
  groupName?: string;
53
57
  /**set 0 to deactivate group, 1 to activate */
54
- groupActive?: 0 | 1;
58
+ groupActive?: "0" | "1" | string;
55
59
  };
56
60
  }
57
61
  export declare class CMDP_SUPDATEGROUP_RESPONSE extends CMDP_SUPDATEGROUP {
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.116",
4
+ "version": "3.0.117",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },