cmd-control-client-lib 3.0.135 → 3.0.137

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.
@@ -140,8 +140,8 @@ export declare enum EnumProductId {
140
140
  }
141
141
  /** channel selector type */
142
142
  export declare type channelIdSelector = {
143
- selectAll?: EnumBooleanStringified;
144
143
  channelId?: ComaSeparatedValues<string> | string;
144
+ selectActive?: EnumBooleanStringified;
145
145
  selectRegularCustomer?: EnumBooleanStringified;
146
146
  selectAdvertised?: EnumBooleanStringified;
147
147
  selectPinned?: EnumBooleanStringified;
@@ -84,15 +84,17 @@ export declare class CMDP_SADDCHANNELTOGROUP implements ICOMMAND {
84
84
  action: ACTION;
85
85
  params: baseParamsType & channelIdType & groupIdType;
86
86
  }
87
- export declare class CMDP_SADDCHANNELTOGROUP_RESPONSE extends CMDP_SADDCHANNELTOGROUP {
88
- commands: CMDC_CHANNELGROUP[];
87
+ export declare class CMDP_SADDCHANNELTOGROUP_RESPONSE extends CMDP_SADDCHANNELTOGROUP implements IRESPONSE {
88
+ result: RESULT;
89
+ commands: ICOMMAND[];
89
90
  values: IKeyMaybeValue;
90
91
  }
91
92
  export declare class CMDP_SDELCHANNELFROMGROUP implements ICOMMAND {
92
93
  action: ACTION;
93
94
  params: baseParamsType & channelIdType & groupIdType;
94
95
  }
95
- export declare class CMDP_SDELCHANNELFROMGROUP_RESPONSE extends CMDP_SDELCHANNELFROMGROUP {
96
- commands: CMDC_CHANNELGROUP[];
96
+ export declare class CMDP_SDELCHANNELFROMGROUP_RESPONSE extends CMDP_SDELCHANNELFROMGROUP implements IRESPONSE {
97
+ result: RESULT;
98
+ commands: ICOMMAND[];
97
99
  values: IKeyMaybeValue;
98
100
  }
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.135",
4
+ "version": "3.0.137",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },