cmd-control-client-lib 3.0.142 → 3.0.144

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.
@@ -146,6 +146,8 @@ export declare type channelIdSelector = {
146
146
  selectAdvertised?: EnumBooleanStringified;
147
147
  selectPinned?: EnumBooleanStringified;
148
148
  selectVip?: EnumBooleanStringified;
149
+ selectGroupId?: ComaSeparatedValues<string> | string;
150
+ /** depricated */
149
151
  groupId?: ComaSeparatedValues<string> | string;
150
152
  };
151
153
  export declare type getChannelsParamsType = {
@@ -1,10 +1,10 @@
1
1
  import { EnumStreamStatusType } from "../@types";
2
2
  import { ICOMMAND, ACTION, baseParamsType, IRESPONSE, RESULT, IKeyMaybeValue } from "../cmd-protocol";
3
3
  export declare enum EnumPlayerEventType {
4
- Play = 0,
5
- Error = 1,
6
- Warn = 2,
7
- Info = 3
4
+ Play = "Play",
5
+ Error = "Error",
6
+ Warn = "Warn",
7
+ Info = "Info"
8
8
  }
9
9
  /** for EnumStreamStatusType.MEDIA_PLAYER_EVENT, value = JSON.stringify(MediaPlayerEvent) */
10
10
  export declare class MediaPlayerEvent {
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.142",
4
+ "version": "3.0.144",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },