cmd-control-client-lib 3.0.119 → 3.0.121
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.
|
@@ -73,7 +73,7 @@ export declare class CMDP_SGETGROUPCHANNELS_RESPONSE extends CMDP_SGETGROUPCHANN
|
|
|
73
73
|
}
|
|
74
74
|
export declare class CMDP_SGETCHANNELGROUPS implements ICOMMAND {
|
|
75
75
|
action: ACTION;
|
|
76
|
-
params: baseParamsType & channelIdType;
|
|
76
|
+
params: baseParamsType & (channelIdType | groupIdType);
|
|
77
77
|
}
|
|
78
78
|
export declare class CMDP_SGETCHANNELGROUPS_RESPONSE extends CMDP_SGETCHANNELGROUPS implements IRESPONSE {
|
|
79
79
|
result: RESULT;
|
package/dist/protocol/media.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EnumBooleanStringifiedExtended } from "../@types";
|
|
1
2
|
import { channelIdType } from "./channel";
|
|
2
3
|
import { ACTION } from "./command/action";
|
|
3
4
|
import { baseParamsType } from "./command/baseparams";
|
|
@@ -54,6 +55,8 @@ export declare class CMDP_SGETUPLOADEDMEDIA implements ICOMMAND {
|
|
|
54
55
|
limit?: number;
|
|
55
56
|
direction?: UploadedMediaDirection;
|
|
56
57
|
linkState?: ChannelMediaLinkState;
|
|
58
|
+
/** get only mediaMd5, channelId, linkState, linkDate, direction and cut off all mediaXXX fields, default is false */
|
|
59
|
+
dropMediaFields?: EnumBooleanStringifiedExtended;
|
|
57
60
|
};
|
|
58
61
|
}
|
|
59
62
|
/**
|