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.
- 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 -0
- 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
|
@@ -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*/
|
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;
|