cmd-control-client-lib 3.0.187 → 3.0.190
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.
|
@@ -192,8 +192,10 @@ export declare type channelIdFilter = {
|
|
|
192
192
|
filterGroupId?: string;
|
|
193
193
|
/** filter by badges */
|
|
194
194
|
selectBadges?: ComaSeparatedValues<EnumBadge> | string;
|
|
195
|
-
/**filterActive*/
|
|
195
|
+
/** filterActive */
|
|
196
196
|
filterActive?: EnumChannelFilterValues;
|
|
197
|
+
/** filter channels to exclude */
|
|
198
|
+
filterExcludeChannelId?: ComaSeparatedValues<string> | string;
|
|
197
199
|
};
|
|
198
200
|
export declare type channelIdSelectOrFilter = channelIdSelector | channelIdFilter;
|
|
199
201
|
export declare type getChannelsParamsType = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EnumBooleanStringified } from "../@types
|
|
1
|
+
import { EnumBooleanStringified } from "../@types";
|
|
2
2
|
import { ACTION } from "./command/action";
|
|
3
3
|
import { baseParamsType } from "./command/baseparams";
|
|
4
4
|
import { ICOMMAND, IKeyMaybeValue, IRESPONSE, RESULT } from "./command/icommand";
|
|
@@ -61,7 +61,9 @@ export declare class CMDP_GETONLINESTATE_RESPONSE extends CMDP_GETONLINESTATE im
|
|
|
61
61
|
*/
|
|
62
62
|
export declare class CMDP_GETONLINESTATES implements ICOMMAND {
|
|
63
63
|
action: ACTION;
|
|
64
|
-
params: baseParamsType & IMayHaveChannelId
|
|
64
|
+
params: baseParamsType & IMayHaveChannelId & {
|
|
65
|
+
onlineOnly?: EnumBooleanStringified;
|
|
66
|
+
};
|
|
65
67
|
}
|
|
66
68
|
/**
|
|
67
69
|
* Response for @see CMDP_GETONLINECONTACTS
|
|
@@ -69,6 +71,7 @@ export declare class CMDP_GETONLINESTATES implements ICOMMAND {
|
|
|
69
71
|
export declare class CMDP_GETONLINESTATES_RESPONSE extends CMDP_GETONLINESTATES implements IRESPONSE {
|
|
70
72
|
result: RESULT;
|
|
71
73
|
commands: CMDC_ONLINESTATE[];
|
|
72
|
-
|
|
73
|
-
|
|
74
|
+
values: IKeyMaybeValue & {
|
|
75
|
+
channelCount: string;
|
|
76
|
+
};
|
|
74
77
|
}
|