cmd-control-client-lib 3.0.334 → 3.0.336
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.
|
@@ -6,6 +6,12 @@ export declare enum EnumService0900State {
|
|
|
6
6
|
ACTIVE = "active",
|
|
7
7
|
INACTIVE = "inactive"
|
|
8
8
|
}
|
|
9
|
+
export declare enum EnumService0900Status {
|
|
10
|
+
ACTIVE = "active",
|
|
11
|
+
INACTIVE = "inactive",
|
|
12
|
+
BUSY = "busy",
|
|
13
|
+
CONNECTING = "connecting"
|
|
14
|
+
}
|
|
9
15
|
export declare enum EnumService0900Operation {
|
|
10
16
|
ENABLE = "turnOn",
|
|
11
17
|
DISABLE = "turnOff"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IProductConfig } from "./live/products-config";
|
|
2
|
-
import { EnumService0900State } from "./live/supdate";
|
|
2
|
+
import { EnumService0900State, EnumService0900Status } from "./live/supdate";
|
|
3
3
|
import { IKeyMaybeValue } from "./command/icommand";
|
|
4
4
|
import { SupportedLanguage } from "./command/baseparams";
|
|
5
5
|
import { EnumBooleanStringified, EnumBooleanStringifiedExtended, JSONString } from "../@types";
|
|
@@ -69,10 +69,10 @@ export interface SessionState extends IKeyMaybeValue {
|
|
|
69
69
|
fsk?: EnumFsk;
|
|
70
70
|
/** SoftChat */
|
|
71
71
|
fsk16?: EnumBooleanStringifiedExtended;
|
|
72
|
-
/** deprecated, use service0900State*/
|
|
73
|
-
service0900state?: EnumService0900State;
|
|
74
72
|
/** service 0900 state, if missing in LOGIN values, the service is not available */
|
|
75
73
|
service0900State?: EnumService0900State;
|
|
74
|
+
/** service 0900 status */
|
|
75
|
+
service0900Status?: EnumService0900Status;
|
|
76
76
|
/** the live preview*/
|
|
77
77
|
livePreviewState?: EnumBooleanStringified;
|
|
78
78
|
/** only exclusive stream available*/
|