cmd-control-client-lib 3.0.148 → 3.0.150

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.
@@ -203,25 +203,30 @@ export declare type getChannelsParamsType = {
203
203
  filterCanReceiveTicket?: EnumChannelFilterValues;
204
204
  /** media purchasing filter */
205
205
  filterCanPurchaseMedia?: EnumChannelFilterValues;
206
- /** filter by group */
206
+ /** filter by group id, comaseparated */
207
207
  filterGroupId?: string;
208
+ /**filterActive*/
209
+ filterActive?: EnumChannelFilterValues;
208
210
  };
209
211
  /**
210
212
  * Query for ChannelList
211
213
  */
212
214
  export declare class CMDP_GETCHANNELS implements ICOMMAND {
213
215
  action: ACTION;
214
- params: baseParamsType & getChannelsParamsType;
216
+ params: baseParamsType & (getChannelsParamsType | channelIdSelector) & {
217
+ countOnly?: EnumBooleanStringified;
218
+ };
215
219
  }
216
220
  /**
217
221
  * Response for CMDP_GETCHANNELS
218
222
  */
219
223
  export declare class CMDP_GETCHANNELS_RESPONSE extends CMDP_GETCHANNELS implements IRESPONSE {
220
224
  result: RESULT;
221
- /** channels */
222
- commands: CMDC_CHANNEL[];
223
- /** unused */
224
- values: IKeyMaybeValue;
225
+ /** channels & channel infos, if countOnly omited or "false" */
226
+ commands: ICOMMAND[];
227
+ values: IKeyMaybeValue & {
228
+ channelCount?: string;
229
+ };
225
230
  }
226
231
  /** synonym, 8320 only */
227
232
  export declare class CMDP_SGETCHANNELS extends CMDP_GETCHANNELS {
@@ -8,8 +8,8 @@ export declare enum EnumProductLinks {
8
8
  MESSAGING = "messaging",
9
9
  PICTURE_TOOL = "picturePool",
10
10
  PICTURE_TOOL_SEDCARD12 = "sedcardVX12",
11
- PICTURE_TOOL_SEDCARD16 = "sedcardVX12",
12
- PICTURE_TOOL_SEDCARD18 = "sedcardVX12",
11
+ PICTURE_TOOL_SEDCARD16 = "sedcardVX16",
12
+ PICTURE_TOOL_SEDCARD18 = "sedcardVX18",
13
13
  PROFILE = "profile",
14
14
  PASSWORD_RESET = "passwordReset",
15
15
  SERVICE0900 = "service0900"
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.148",
4
+ "version": "3.0.150",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },