cmd-control-client-lib 3.0.295 → 3.0.299

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.
@@ -179,6 +179,8 @@ export declare type channelIdFilter = {
179
179
  filterVIP?: EnumChannelFilterValues;
180
180
  /** has a video chat */
181
181
  filterVideoChat?: EnumChannelFilterValues;
182
+ /** has a session */
183
+ filterOnline?: EnumChannelFilterValues;
182
184
  /** cant sent message*/
183
185
  filterBlockedOutbound?: EnumChannelFilterValues;
184
186
  /** filter by product id, default empty*/
@@ -60,6 +60,8 @@ export declare class CMDP_INIT_RESPONSE extends CMDP_INIT implements IRESPONSE,
60
60
  currencyFormat?: JSONString<InitialCurrencies>;
61
61
  vxc_factor?: string;
62
62
  reactions?: JSONString<IReaction[]>;
63
+ passwordResetUrl?: string;
64
+ registrationUrl?: string;
63
65
  };
64
66
  /** backendpayload */
65
67
  payload?: IInitBackendPayload;
@@ -257,6 +257,7 @@ export declare type StreamParams = {
257
257
  streamName: string;
258
258
  webRtc: string;
259
259
  powerEstimation: EnumPowerEstimation;
260
+ lastStreamType?: "webRTC" | "RTMP" | string;
260
261
  };
261
262
  export declare class CMDP_SGETSTREAMPARAMS_RESPONSE extends CMDP_SGETSTREAMPARAMS implements IRESPONSE {
262
263
  result: RESULT;
@@ -1,4 +1,6 @@
1
1
  export declare enum EnumProductLinks {
2
+ MY_SHOW = "ticketShow",
3
+ ALL_SHOWS = "ticketShowAll",
2
4
  CHAT_MOTTO = "chatMotto",
3
5
  CHAT_SETTINGS = "chatSettings",
4
6
  HELP = "help",
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.295",
4
+ "version": "3.0.299",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },