cmd-control-client-lib 3.0.357 → 3.0.358

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.
@@ -19,7 +19,9 @@ export declare enum MSettingNameEnum {
19
19
  FREE_CHAT_ENABLED = "FreeChatEnabled",
20
20
  PARTY_CHAT_ENABLED = "PartyChatEnabled",
21
21
  SERVICE0900_ENABLED = "Service0900Enabled",
22
- SERCIVE0900WEBSIP_ENABLED = "Service0900WebSipEnabled"
22
+ SERCIVE0900WEBSIP_ENABLED = "Service0900WebSipEnabled",
23
+ SERVICE0900WEBSIP_VISIBLE = "Service0900WebSipVisible",
24
+ SERVICE0900PHONE_ENABLED = "Service0900PhoneEnabled"
23
25
  }
24
26
  export declare enum MSettingValueTypeEnum {
25
27
  FLOAT = "float",
@@ -92,6 +94,8 @@ export declare class MSettings {
92
94
  [MSettingNameEnum.PARTY_CHAT_ENABLED]?: MSettingBool;
93
95
  [MSettingNameEnum.SERVICE0900_ENABLED]?: MSettingBool;
94
96
  [MSettingNameEnum.SERCIVE0900WEBSIP_ENABLED]?: MSettingBool;
97
+ [MSettingNameEnum.SERVICE0900WEBSIP_VISIBLE]?: MSettingBool;
98
+ [MSettingNameEnum.SERVICE0900PHONE_ENABLED]?: MSettingBool;
95
99
  };
96
100
  }
97
101
  /**
@@ -26,6 +26,10 @@ export declare class CMDC_STARTWEBSIP implements ICOMMAND {
26
26
  sipml5?: JSONString<WebSipEndpointClientConfigSipml5Type>;
27
27
  };
28
28
  }
29
+ export declare class CMDC_STOPWEBSIP implements ICOMMAND {
30
+ action: ACTION.CMDC_STOPWEBSIP;
31
+ params: IKeyMaybeValue;
32
+ }
29
33
  export declare class CMDC_STOPWEBSIPSOCKET implements ICOMMAND {
30
34
  action: ACTION.CMDC_STOPWEBSIP;
31
35
  params: IKeyMaybeValue;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cmd-control-client-lib",
3
3
  "description": "Cmd-Client-Library",
4
- "version": "3.0.357",
4
+ "version": "3.0.358",
5
5
  "directories": {
6
6
  "lib": "./dist"
7
7
  },