cmd-control-client-lib 3.0.185 → 3.0.187
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.
|
@@ -167,5 +167,6 @@ export declare enum ACTION {
|
|
|
167
167
|
CMDP_WSA_ADDUPDATEUSER = "CMDP_WSA_ADDUPDATEUSER",
|
|
168
168
|
CMDP_WSA_HEARTBEAT = "CMDP_WSA_HEARTBEAT",
|
|
169
169
|
CMDP_DEEPL = "CMDP_DEEPL",
|
|
170
|
-
CMDP_SGETSTREAMPARAMS = "CMDP_SGETSTREAMPARAMS"
|
|
170
|
+
CMDP_SGETSTREAMPARAMS = "CMDP_SGETSTREAMPARAMS",
|
|
171
|
+
CMDP_LOGOUTOTHERMOBILE = "CMDP_LOGOUTOTHERMOBILE"
|
|
171
172
|
}
|
|
@@ -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;
|
|
64
|
+
}
|
|
65
|
+
export declare class CMDP_LOGOUTOTHERMOBILE_RESPONSE extends CMDP_LOGOUTOTHERMOBILE implements IRESPONSE {
|
|
66
|
+
result: RESULT;
|
|
67
|
+
commands: ICOMMAND[];
|
|
68
|
+
values: IKeyMaybeValue;
|
|
69
|
+
}
|