cmd-control-client-lib 3.0.184 → 3.0.185
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.
|
@@ -166,5 +166,6 @@ export declare enum ACTION {
|
|
|
166
166
|
CMDC_STOPWEBSIP = "CMDC_STOPWEBSIP",
|
|
167
167
|
CMDP_WSA_ADDUPDATEUSER = "CMDP_WSA_ADDUPDATEUSER",
|
|
168
168
|
CMDP_WSA_HEARTBEAT = "CMDP_WSA_HEARTBEAT",
|
|
169
|
-
CMDP_DEEPL = "CMDP_DEEPL"
|
|
169
|
+
CMDP_DEEPL = "CMDP_DEEPL",
|
|
170
|
+
CMDP_SGETSTREAMPARAMS = "CMDP_SGETSTREAMPARAMS"
|
|
170
171
|
}
|
|
@@ -15,7 +15,6 @@ export declare class CMDP_STARTSEND implements ICOMMAND {
|
|
|
15
15
|
hasAudio?: EnumBooleanDigitized;
|
|
16
16
|
bandWidth?: string;
|
|
17
17
|
capabilities?: string;
|
|
18
|
-
powerEstimation?: EnumPowerEstimation;
|
|
19
18
|
};
|
|
20
19
|
}
|
|
21
20
|
export declare class CMDP_STARTSEND_RESPONSE extends CMDP_STARTSEND implements IRESPONSE {
|
|
@@ -223,3 +222,24 @@ export declare class CMDC_QUERYANSWERED implements ICOMMAND {
|
|
|
223
222
|
queryId: string;
|
|
224
223
|
};
|
|
225
224
|
}
|
|
225
|
+
export declare class CMDP_SGETSTREAMPARAMS implements ICOMMAND {
|
|
226
|
+
action: ACTION;
|
|
227
|
+
params: baseParamsType & {
|
|
228
|
+
powerEstimation: EnumPowerEstimation;
|
|
229
|
+
};
|
|
230
|
+
}
|
|
231
|
+
export declare type StreamParams = {
|
|
232
|
+
rtmpURL: string;
|
|
233
|
+
streamName: string;
|
|
234
|
+
webRtc: string;
|
|
235
|
+
powerEstimation: EnumPowerEstimation;
|
|
236
|
+
};
|
|
237
|
+
export declare class CMDP_SGETSTREAMPARAMS_RESPONSE extends CMDP_SGETSTREAMPARAMS implements IRESPONSE {
|
|
238
|
+
result: RESULT;
|
|
239
|
+
commands: ICOMMAND[];
|
|
240
|
+
values: IKeyMaybeValue & StreamParams;
|
|
241
|
+
}
|
|
242
|
+
export declare class CMDC_CSTARTSTREAMPUSH implements ICOMMAND {
|
|
243
|
+
action: ACTION;
|
|
244
|
+
params: baseParamsType & StreamParams;
|
|
245
|
+
}
|