cmd-control-client-lib 3.0.46 → 3.0.47
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/protocol/media.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ACTION } from "./command/action";
|
|
2
2
|
import { baseParamsType } from "./command/baseparams";
|
|
3
|
-
import { ICOMMAND, IKeyMaybeValue } from "./command/icommand";
|
|
3
|
+
import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "./command/icommand";
|
|
4
4
|
import { MediaFile, MediaMd5 } from "./message";
|
|
5
5
|
export declare type MayHaveChannelId = {
|
|
6
6
|
channelId?: string;
|
|
@@ -32,7 +32,8 @@ export declare class CMDP_SCHECKUPLOADEDMEDIA implements ICOMMAND {
|
|
|
32
32
|
/**
|
|
33
33
|
* media infos, if any found in cache
|
|
34
34
|
*/
|
|
35
|
-
export declare class CMDP_SCHECKUPLOADEDMEDIA_RESPONSE extends CMDP_SCHECKUPLOADEDMEDIA {
|
|
35
|
+
export declare class CMDP_SCHECKUPLOADEDMEDIA_RESPONSE extends CMDP_SCHECKUPLOADEDMEDIA implements IRESPONSE {
|
|
36
|
+
result: RESULT;
|
|
36
37
|
commands: CMDC_CMEDIA[];
|
|
37
38
|
values: IKeyMaybeValue;
|
|
38
39
|
}
|