cmd-control-client-lib 3.0.132 → 3.0.134
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.
|
@@ -140,6 +140,7 @@ export declare enum EnumProductId {
|
|
|
140
140
|
}
|
|
141
141
|
/** channel selector type */
|
|
142
142
|
export declare type channelIdSelector = {
|
|
143
|
+
selectAll?: EnumBooleanStringified;
|
|
143
144
|
channelId?: ComaSeparatedValues<string> | string;
|
|
144
145
|
selectRegularCustomer?: EnumBooleanStringified;
|
|
145
146
|
selectAdvertised?: EnumBooleanStringified;
|
|
@@ -21,9 +21,9 @@ export declare class CMDC_GROUP implements ICOMMAND {
|
|
|
21
21
|
action: ACTION;
|
|
22
22
|
params: groupType;
|
|
23
23
|
}
|
|
24
|
-
export declare class CMDC_CHANNELGROUP
|
|
24
|
+
export declare class CMDC_CHANNELGROUP implements ICOMMAND {
|
|
25
25
|
action: ACTION;
|
|
26
|
-
params:
|
|
26
|
+
params: groupIdType & channelIdType & {
|
|
27
27
|
/** inform deleted channel from group */
|
|
28
28
|
isDeleted?: EnumBooleanStringified;
|
|
29
29
|
};
|