cmd-control-client-lib 3.0.294 → 3.0.298

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.
@@ -307,10 +307,11 @@ export declare enum EnumLimitType {
307
307
  export declare class CMDP_SGETMESSAGEHISTORY implements ICOMMAND {
308
308
  action: ACTION;
309
309
  params: baseParamsType & getHistoryParamsType & {
310
- /** chat id list, comaseparated */
310
+ /** chat id list, coma separated */
311
311
  chatIDs?: string;
312
312
  /** limit type, default total */
313
313
  limitType?: EnumLimitType;
314
+ fetchReactionsFirst?: EnumBooleanStringified;
314
315
  };
315
316
  }
316
317
  /**
@@ -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.294",
4
+ "version": "3.0.298",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },