cmd-control-client-lib 3.0.184 → 3.0.186
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,7 @@ 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",
|
|
171
|
+
CMDP_LOGOUTOTHERMOBILE = "CMDP_LOGOUTOTHERMOBILE"
|
|
170
172
|
}
|
|
@@ -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
|
+
}
|
|
@@ -10,8 +10,9 @@ export declare enum EnumMobileTokenType {
|
|
|
10
10
|
export declare class CMDP_SETMOBILETOKEN implements ICOMMAND {
|
|
11
11
|
action: ACTION;
|
|
12
12
|
params: baseParamsType & {
|
|
13
|
-
type
|
|
14
|
-
token
|
|
13
|
+
type: EnumMobileTokenType;
|
|
14
|
+
token: string;
|
|
15
|
+
deviceId: string;
|
|
15
16
|
};
|
|
16
17
|
}
|
|
17
18
|
export declare class CMDP_SETMOBILETOKEN_RESPONSE extends CMDP_SETMOBILETOKEN implements IRESPONSE {
|
|
@@ -57,3 +58,12 @@ export declare class CMDC_STOPMOBILECALL implements ICOMMAND {
|
|
|
57
58
|
videoSdkConfig: JSONString<VideoSdkConfig>;
|
|
58
59
|
};
|
|
59
60
|
}
|
|
61
|
+
export declare class CMDP_LOGOUTOTHERMOBILE implements ICOMMAND {
|
|
62
|
+
action: ACTION;
|
|
63
|
+
params: baseParamsType & channelIdType;
|
|
64
|
+
}
|
|
65
|
+
export declare class CMDP_LOGOUTOTHERMOBILE_RESPONSE extends CMDP_LOGOUTOTHERMOBILE implements IRESPONSE {
|
|
66
|
+
result: RESULT;
|
|
67
|
+
commands: ICOMMAND[];
|
|
68
|
+
values: IKeyMaybeValue;
|
|
69
|
+
}
|