cmd-control-client-lib 3.0.188 → 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.
|
@@ -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
|
}
|