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.
- package/dist/cmd-control-client-lib.js +1 -1
- package/dist/cmd-control-client-lib.js.map +1 -1
- package/dist/protocol/channel.d.ts +2 -1
- package/dist/protocol/init.d.ts +2 -0
- package/dist/protocol/live/live-commands.d.ts +1 -0
- package/dist/protocol/live/products-config.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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,
|
|
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
|
/**
|
package/dist/protocol/init.d.ts
CHANGED
|
@@ -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;
|