cmd-control-client-lib 3.0.131 → 3.0.133

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.
@@ -64,6 +64,8 @@ export declare class ChannelType implements IKeyValue {
64
64
  serial: string;
65
65
  /** @see EnumChannelFlags */
66
66
  flags?: ComaSeparatedValues<EnumChannelFlags> | EnumChannelFlags;
67
+ /** the weight of the channel*/
68
+ weight?: string;
67
69
  }
68
70
  /**
69
71
  * the command for delivery channel info
@@ -21,9 +21,9 @@ export declare class CMDC_GROUP implements ICOMMAND {
21
21
  action: ACTION;
22
22
  params: groupType;
23
23
  }
24
- export declare class CMDC_CHANNELGROUP extends CMDC_GROUP {
24
+ export declare class CMDC_CHANNELGROUP implements ICOMMAND {
25
25
  action: ACTION;
26
- params: IKeyMaybeValue & groupType & channelIdType & {
26
+ params: groupIdType & channelIdType & {
27
27
  /** inform deleted channel from group */
28
28
  isDeleted?: EnumBooleanStringified;
29
29
  };
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.131",
4
+ "version": "3.0.133",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },