cmd-control-client-lib 3.0.381 → 3.0.382
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.
|
@@ -7,6 +7,7 @@ export declare enum ACTION {
|
|
|
7
7
|
CMDP_LOGIN = "CMDP_LOGIN",
|
|
8
8
|
CMDP_SLOGIN = "CMDP_SLOGIN",
|
|
9
9
|
CMDP_LOGOUT = "CMDP_LOGOUT",
|
|
10
|
+
CMDP_STEST = "CMDP_STEST",
|
|
10
11
|
CMDP_SLOGOUT = "CMDP_SLOGOUT",
|
|
11
12
|
CMDP_CLOGOUT = "CMDP_CLOGOUT",
|
|
12
13
|
CMDC_USERINFO = "CMDC_USERINFO",
|
|
@@ -63,7 +64,7 @@ export declare enum ACTION {
|
|
|
63
64
|
CMDP_STOPSEND = "CMDP_STOPSEND",
|
|
64
65
|
CMDP_STARTSEND = "CMDP_STARTSEND",
|
|
65
66
|
/**
|
|
66
|
-
* @deprecated/obsolete
|
|
67
|
+
* @deprecated / obsolete
|
|
67
68
|
*/
|
|
68
69
|
CMDP_SERVICE0900 = "CMDP_SERVICE0900",
|
|
69
70
|
CMDP_NOOP = "CMDP_NOOP",
|
|
@@ -40,3 +40,12 @@ export declare class CMDP_CLOGOUT_RESPONSE extends CMDP_CLOGOUT implements IRESP
|
|
|
40
40
|
videoTime?: string;
|
|
41
41
|
};
|
|
42
42
|
}
|
|
43
|
+
export declare class CMDP_STEST implements ICOMMAND {
|
|
44
|
+
action: ACTION;
|
|
45
|
+
params: baseParamsType;
|
|
46
|
+
}
|
|
47
|
+
export declare class CMDP_STEST_RESPONSE extends CMDP_STEST implements IRESPONSE {
|
|
48
|
+
result: RESULT;
|
|
49
|
+
commands: ICOMMAND[];
|
|
50
|
+
values: IKeyMaybeValue;
|
|
51
|
+
}
|