@signageos/front-applet 8.2.1 → 8.2.4
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.
- package/dist/bundle.js +20 -6
- package/dist/bundle.js.map +1 -1
- package/docs/index.md +9 -9
- package/docs/sos/browser.md +11 -3
- package/docs/sos/display.md +13 -20
- package/docs/sos/fileSystem.md +31 -6
- package/docs/sos/hardware/barcodeScanner.md +9 -0
- package/docs/sos/hardware/index.md +9 -0
- package/docs/sos/native/mdc.md +8 -3
- package/docs/sos/osd.md +9 -0
- package/docs/sos/video.md +9 -0
- package/docs/sos_management/app.md +97 -18
- package/docs/sos_management/audio.md +43 -2
- package/docs/sos_management/autoRecovery.md +101 -0
- package/docs/sos_management/debug.md +84 -1
- package/docs/sos_management/firmware.md +64 -1
- package/docs/sos_management/index.md +217 -19
- package/docs/sos_management/network.md +84 -29
- package/docs/sos_management/os.md +59 -4
- package/docs/sos_management/package.md +25 -3
- package/docs/sos_management/power.md +142 -18
- package/docs/sos_management/proxy.md +54 -3
- package/docs/sos_management/remoteControl.md +55 -4
- package/docs/sos_management/screen.md +140 -29
- package/docs/sos_management/security.md +48 -5
- package/docs/sos_management/time.md +76 -9
- package/docs/sos_management/wifi.md +207 -45
- package/es6/FrontApplet/Browser/Browser.d.ts +11 -3
- package/es6/FrontApplet/Browser/Browser.js +13 -4
- package/es6/FrontApplet/Browser/Browser.js.map +1 -1
- package/es6/FrontApplet/Command/Command.js +8 -10
- package/es6/FrontApplet/Command/Command.js.map +1 -1
- package/es6/FrontApplet/Connect/Connect.js +2 -2
- package/es6/FrontApplet/Connect/Connect.js.map +1 -1
- package/es6/FrontApplet/Debug/debugDecorator.d.ts +1 -1
- package/es6/FrontApplet/Debug/debugDecorator.js.map +1 -1
- package/es6/FrontApplet/DeviceInfo/DeviceInfo.js +1 -1
- package/es6/FrontApplet/DeviceInfo/DeviceInfo.js.map +1 -1
- package/es6/FrontApplet/Display/Display.d.ts +14 -19
- package/es6/FrontApplet/Display/Display.js +14 -19
- package/es6/FrontApplet/Display/Display.js.map +1 -1
- package/es6/FrontApplet/FileSystem/FileSystem.d.ts +27 -5
- package/es6/FrontApplet/FileSystem/FileSystem.js +27 -5
- package/es6/FrontApplet/FileSystem/FileSystem.js.map +1 -1
- package/es6/FrontApplet/FileSystem/StorageUnitsChangedMessage.d.ts +1 -2
- package/es6/FrontApplet/Font/fontFaceGenerator.js +1 -1
- package/es6/FrontApplet/Font/fontFaceGenerator.js.map +1 -1
- package/es6/FrontApplet/FrontApplet.js +3 -3
- package/es6/FrontApplet/FrontApplet.js.map +1 -1
- package/es6/FrontApplet/Hardware/BarcodeScanner/BarcodeScanner.d.ts +10 -1
- package/es6/FrontApplet/Hardware/BarcodeScanner/BarcodeScanner.js +9 -0
- package/es6/FrontApplet/Hardware/BarcodeScanner/BarcodeScanner.js.map +1 -1
- package/es6/FrontApplet/Hardware/Hardware.d.ts +9 -0
- package/es6/FrontApplet/Hardware/Hardware.js +9 -0
- package/es6/FrontApplet/Hardware/Hardware.js.map +1 -1
- package/es6/FrontApplet/Iframe/Iframe.js +1 -1
- package/es6/FrontApplet/Iframe/Iframe.js.map +1 -1
- package/es6/FrontApplet/Input/Input.js +2 -1
- package/es6/FrontApplet/Input/Input.js.map +1 -1
- package/es6/FrontApplet/Management/App/App.d.ts +53 -17
- package/es6/FrontApplet/Management/App/App.js +23 -12
- package/es6/FrontApplet/Management/App/App.js.map +1 -1
- package/es6/FrontApplet/Management/App/IApp.d.ts +3 -0
- package/es6/FrontApplet/Management/Audio/Audio.d.ts +24 -3
- package/es6/FrontApplet/Management/Audio/Audio.js +24 -3
- package/es6/FrontApplet/Management/Audio/Audio.js.map +1 -1
- package/es6/FrontApplet/Management/AutoRecovery/AutoRecovery.d.ts +49 -3
- package/es6/FrontApplet/Management/AutoRecovery/AutoRecovery.js +49 -3
- package/es6/FrontApplet/Management/AutoRecovery/AutoRecovery.js.map +1 -1
- package/es6/FrontApplet/Management/Debug/Debug.d.ts +44 -2
- package/es6/FrontApplet/Management/Debug/Debug.js +43 -1
- package/es6/FrontApplet/Management/Debug/Debug.js.map +1 -1
- package/es6/FrontApplet/Management/Firmware/Firmware.d.ts +41 -4
- package/es6/FrontApplet/Management/Firmware/Firmware.js +33 -0
- package/es6/FrontApplet/Management/Firmware/Firmware.js.map +1 -1
- package/es6/FrontApplet/Management/Management.d.ts +119 -21
- package/es6/FrontApplet/Management/Management.js +119 -22
- package/es6/FrontApplet/Management/Management.js.map +1 -1
- package/es6/FrontApplet/Management/Network/Network.d.ts +44 -25
- package/es6/FrontApplet/Management/Network/Network.js +28 -14
- package/es6/FrontApplet/Management/Network/Network.js.map +1 -1
- package/es6/FrontApplet/Management/OS/IOS.d.ts +3 -0
- package/es6/FrontApplet/Management/OS/OS.d.ts +32 -4
- package/es6/FrontApplet/Management/OS/OS.js +32 -4
- package/es6/FrontApplet/Management/OS/OS.js.map +1 -1
- package/es6/FrontApplet/Management/Package/Package.d.ts +18 -3
- package/es6/FrontApplet/Management/Package/Package.js +18 -4
- package/es6/FrontApplet/Management/Package/Package.js.map +1 -1
- package/es6/FrontApplet/Management/Power/IPower.d.ts +3 -0
- package/es6/FrontApplet/Management/Power/IPower.js.map +1 -1
- package/es6/FrontApplet/Management/Power/Power.d.ts +67 -20
- package/es6/FrontApplet/Management/Power/Power.js +71 -25
- package/es6/FrontApplet/Management/Power/Power.js.map +1 -1
- package/es6/FrontApplet/Management/Proxy/Proxy.d.ts +28 -3
- package/es6/FrontApplet/Management/Proxy/Proxy.js +28 -3
- package/es6/FrontApplet/Management/Proxy/Proxy.js.map +1 -1
- package/es6/FrontApplet/Management/RemoteControl/RemoteControl.d.ts +23 -5
- package/es6/FrontApplet/Management/RemoteControl/RemoteControl.js +23 -5
- package/es6/FrontApplet/Management/RemoteControl/RemoteControl.js.map +1 -1
- package/es6/FrontApplet/Management/Screen/Screen.d.ts +77 -32
- package/es6/FrontApplet/Management/Screen/Screen.js +65 -26
- package/es6/FrontApplet/Management/Screen/Screen.js.map +1 -1
- package/es6/FrontApplet/Management/Security/Security.d.ts +25 -7
- package/es6/FrontApplet/Management/Security/Security.js +25 -7
- package/es6/FrontApplet/Management/Security/Security.js.map +1 -1
- package/es6/FrontApplet/Management/Time/Time.d.ts +47 -11
- package/es6/FrontApplet/Management/Time/Time.js +29 -7
- package/es6/FrontApplet/Management/Time/Time.js.map +1 -1
- package/es6/FrontApplet/Management/Wifi/IWifi.d.ts +3 -0
- package/es6/FrontApplet/Management/Wifi/IWifi.js.map +1 -1
- package/es6/FrontApplet/Management/Wifi/Wifi.d.ts +137 -42
- package/es6/FrontApplet/Management/Wifi/Wifi.js +139 -43
- package/es6/FrontApplet/Management/Wifi/Wifi.js.map +1 -1
- package/es6/FrontApplet/NativeCommands/MDC/Mdc.d.ts +8 -3
- package/es6/FrontApplet/NativeCommands/MDC/Mdc.js +8 -3
- package/es6/FrontApplet/NativeCommands/MDC/Mdc.js.map +1 -1
- package/es6/FrontApplet/OSD/OSD.d.ts +9 -0
- package/es6/FrontApplet/OSD/OSD.js +9 -0
- package/es6/FrontApplet/OSD/OSD.js.map +1 -1
- package/es6/FrontApplet/Offline/Cache/Cache.js +2 -2
- package/es6/FrontApplet/Offline/Cache/Cache.js.map +1 -1
- package/es6/FrontApplet/Offline/Flags/AppendFlagController.d.ts +1 -1
- package/es6/FrontApplet/Offline/Flags/AppendFlagController.js.map +1 -1
- package/es6/FrontApplet/Offline/Offline.js +2 -2
- package/es6/FrontApplet/Offline/Offline.js.map +1 -1
- package/es6/FrontApplet/Sync/Sync.js +6 -3
- package/es6/FrontApplet/Sync/Sync.js.map +1 -1
- package/es6/FrontApplet/Touch/Touch.js +2 -1
- package/es6/FrontApplet/Touch/Touch.js.map +1 -1
- package/es6/FrontApplet/Validate/Validate.d.ts +1 -1
- package/es6/FrontApplet/Validate/Validate.js +9 -9
- package/es6/FrontApplet/Validate/Validate.js.map +1 -1
- package/es6/FrontApplet/Validate/ValidateObjectInterface.js +10 -10
- package/es6/FrontApplet/Validate/ValidateObjectInterface.js.map +1 -1
- package/es6/FrontApplet/Video/Video.d.ts +9 -0
- package/es6/FrontApplet/Video/Video.js +11 -1
- package/es6/FrontApplet/Video/Video.js.map +1 -1
- package/es6/Monitoring/FileSystem/fileSystemCommands.d.ts +2 -2
- package/es6/Monitoring/Management/Screen/handleScreenRequests.js +2 -1
- package/es6/Monitoring/Management/Screen/handleScreenRequests.js.map +1 -1
- package/es6/bundle.js +5 -5
- package/es6/bundle.js.map +1 -1
- package/package.json +16 -21
|
@@ -2,13 +2,16 @@ import IPostMessage from '../../IPostMessage';
|
|
|
2
2
|
import INetworkInfo, { INetworkInterface, INetworkOptions, INetworkOptionsLegacy, NetworkInterface } from './INetworkInfo';
|
|
3
3
|
import INetwork from './INetwork';
|
|
4
4
|
/**
|
|
5
|
-
* The `sos.management.network` API groups together methods
|
|
5
|
+
* The `sos.management.network` API groups together networking methods. For Wi-Fi setup, use the [Wi-Fi API](https://developers.signageos.io/sdk/sos_management/wifi).
|
|
6
6
|
*
|
|
7
|
-
*
|
|
7
|
+
* <details>
|
|
8
|
+
* <summary>Network Management Capabilities</summary>
|
|
9
|
+
* | Capability | Description |
|
|
10
|
+
* |:------------|:-------------|
|
|
11
|
+
* | `NETWORK_INFO` | If device supports returning network information |
|
|
8
12
|
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* :::
|
|
13
|
+
* If you want to check if the device supports this capability, use [`sos.management.supports()`](https://developers.signageos.io/sdk/sos_management/#supports).
|
|
14
|
+
* </details>
|
|
12
15
|
*/
|
|
13
16
|
export default class Network implements INetwork {
|
|
14
17
|
private messagePrefix;
|
|
@@ -18,11 +21,19 @@ export default class Network implements INetwork {
|
|
|
18
21
|
/** @deprecated Use `sos.management.network.listInterfaces()` instead. */
|
|
19
22
|
getActiveInfo(): Promise<INetworkInfo>;
|
|
20
23
|
/**
|
|
21
|
-
* The `listInterface()` method returns list of all network interfaces, and their information like MAC address, IP address, etc.
|
|
22
|
-
* connection strength is described as percentage in range from 0 to 100, linearly converted from dBm -90 to -30 respectively based on
|
|
23
|
-
* platform.
|
|
24
|
+
* The `listInterface()` method returns a list of all network interfaces, and their information like MAC address, IP address, etc.
|
|
25
|
+
* Wi-Fi connection strength is described as a percentage in the range from 0 to 100, linearly converted from dBm -90 to -30, respectively, based on the platform.
|
|
24
26
|
*
|
|
27
|
+
* @returns {Promise<INetworkInterface[]>} Resolves to an array of network interfaces with their information.
|
|
25
28
|
* @since 4.9.0
|
|
29
|
+
*
|
|
30
|
+
* @example // {@link https://github.com/signageos/applet-examples/tree/master/examples/management-js-api/network | Applet Example with Network Interfaces}
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* const interfaces = await sos.management.network.listInterfaces();
|
|
34
|
+
* interfaces.forEach((iface) => {
|
|
35
|
+
* console.log(`Interface: ${iface.name}, IP: ${iface.ipAddress}, MAC: ${iface.macAddress}`);
|
|
36
|
+
* });
|
|
26
37
|
*/
|
|
27
38
|
listInterfaces(): Promise<INetworkInterface[]>;
|
|
28
39
|
/** @deprecated Use `sos.management.network.setManual(interfaceName, options)` instead. */
|
|
@@ -31,45 +42,53 @@ export default class Network implements INetwork {
|
|
|
31
42
|
* The `setManual()` method manually configures a network interface.
|
|
32
43
|
*
|
|
33
44
|
* :::warning
|
|
34
|
-
*
|
|
35
|
-
* Wi-Fi interface can be configured with this method but it has to be first enabled via the [Wi-Fi API](./wifi#enableClient).
|
|
36
|
-
*
|
|
45
|
+
* Wi-Fi interface can be configured with this method, but it has to be first enabled via the [Wi-Fi API](https://developers.signageos.io/sdk/sos_management/wifi#enableclient).
|
|
37
46
|
* :::
|
|
38
47
|
*
|
|
39
|
-
* @param interfaceName The interface name which can be retrieved from the list of interfaces returned by listInterfaces()
|
|
48
|
+
* @param interfaceName The interface name which can be retrieved from the list of interfaces returned by `listInterfaces()`
|
|
40
49
|
* @param options The network configuration options.
|
|
41
|
-
*
|
|
50
|
+
* @param options.localAddress The local IP address to be set.
|
|
51
|
+
* @param options.gateway The gateway IP address to be set.
|
|
52
|
+
* @param options.netmask The netmask to be set.
|
|
53
|
+
* @param options.dns The DNS server array of IP addresses to be set.
|
|
54
|
+
* @returns {Promise<void>} A promise that resolves when the network is set.
|
|
55
|
+
* @throws {Error} If the network options are invalid.
|
|
56
|
+
* @throws {Error} If the device does not support network management.
|
|
42
57
|
* @since 4.0.0
|
|
43
58
|
*/
|
|
44
59
|
setManual(interfaceName: string, options: INetworkOptions): Promise<void>;
|
|
45
60
|
/** @deprecated Use `sos.management.network.setDHCP(interfaceName)` instead. */
|
|
46
61
|
setDHCP(networkInterface: NetworkInterface): Promise<void>;
|
|
47
62
|
/**
|
|
48
|
-
* The `setDHCP()` method configures a network interface to use DHCP.
|
|
63
|
+
* The `setDHCP()` method configures a selected network interface to use DHCP.
|
|
49
64
|
*
|
|
50
65
|
* :::warning
|
|
51
|
-
*
|
|
52
|
-
* Wi-Fi interface can be configured with this method but it has to be first enabled via the [Wi-Fi API](./wifi#enableClient).
|
|
53
|
-
*
|
|
66
|
+
* Wi-Fi interface can be configured with this method, but it has to be first enabled via the [Wi-Fi API](https://developers.signageos.io/sdk/sos_management/wifi#enableclient).
|
|
54
67
|
* :::
|
|
55
68
|
*
|
|
56
|
-
* @param interfaceName The interface name which can be retrieved from the list of interfaces returned by listInterfaces()
|
|
57
|
-
*
|
|
69
|
+
* @param interfaceName The interface name which can be retrieved from the list of interfaces returned by `listInterfaces()`
|
|
70
|
+
* @returns {Promise<void>} A promise that resolves when the network interface is set to use DHCP.
|
|
58
71
|
* @since 4.0.0
|
|
72
|
+
*
|
|
73
|
+
* @example
|
|
74
|
+
* await sos.management.network.setDHCP('eth0');
|
|
59
75
|
*/
|
|
60
76
|
setDHCP(interfaceName: string): Promise<void>;
|
|
61
77
|
/**
|
|
62
|
-
* The `disableInterface()`
|
|
78
|
+
* The `disableInterface()` turns off a selected network interface.
|
|
63
79
|
*
|
|
64
80
|
* :::warning
|
|
65
|
-
*
|
|
66
|
-
* Don't use this method to disable Wi-Fi. Use [Wi-Fi API](./wifi) to enable/disable Wi-Fi.
|
|
67
|
-
*
|
|
81
|
+
* Don't use this method to disable Wi-Fi. Use [Wi-Fi API](https://developers.signageos.io/sdk/sos_management/wifi) to turn Wi-Fi on/off.
|
|
68
82
|
* :::
|
|
69
83
|
*
|
|
70
|
-
* @param interfaceName The interface name which can be retrieved from the list of interfaces returned by listInterfaces()
|
|
71
|
-
*
|
|
84
|
+
* @param interfaceName The interface name which can be retrieved from the list of interfaces returned by `listInterfaces()`
|
|
85
|
+
* @return {Promise<void>} A promise that resolves when the network interface is disabled.
|
|
86
|
+
* @throws {Error} If the interface name is invalid.
|
|
87
|
+
* @throws {Error} If the device does not support network management.
|
|
72
88
|
* @since 4.13.0
|
|
89
|
+
*
|
|
90
|
+
* @example
|
|
91
|
+
* await sos.management.network.disableInterface('eth0');
|
|
73
92
|
*/
|
|
74
93
|
disableInterface(interfaceName: string): Promise<void>;
|
|
75
94
|
private getMessage;
|
|
@@ -6,13 +6,16 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
const INetworkInfo_1 = require("./INetworkInfo");
|
|
7
7
|
const Validate_1 = __importDefault(require("../../Validate/Validate"));
|
|
8
8
|
/**
|
|
9
|
-
* The `sos.management.network` API groups together methods
|
|
9
|
+
* The `sos.management.network` API groups together networking methods. For Wi-Fi setup, use the [Wi-Fi API](https://developers.signageos.io/sdk/sos_management/wifi).
|
|
10
10
|
*
|
|
11
|
-
*
|
|
11
|
+
* <details>
|
|
12
|
+
* <summary>Network Management Capabilities</summary>
|
|
13
|
+
* | Capability | Description |
|
|
14
|
+
* |:------------|:-------------|
|
|
15
|
+
* | `NETWORK_INFO` | If device supports returning network information |
|
|
12
16
|
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
* :::
|
|
17
|
+
* If you want to check if the device supports this capability, use [`sos.management.supports()`](https://developers.signageos.io/sdk/sos_management/#supports).
|
|
18
|
+
* </details>
|
|
16
19
|
*/
|
|
17
20
|
class Network {
|
|
18
21
|
messagePrefix;
|
|
@@ -30,11 +33,19 @@ class Network {
|
|
|
30
33
|
return networkInfo;
|
|
31
34
|
}
|
|
32
35
|
/**
|
|
33
|
-
* The `listInterface()` method returns list of all network interfaces, and their information like MAC address, IP address, etc.
|
|
34
|
-
* connection strength is described as percentage in range from 0 to 100, linearly converted from dBm -90 to -30 respectively based on
|
|
35
|
-
* platform.
|
|
36
|
+
* The `listInterface()` method returns a list of all network interfaces, and their information like MAC address, IP address, etc.
|
|
37
|
+
* Wi-Fi connection strength is described as a percentage in the range from 0 to 100, linearly converted from dBm -90 to -30, respectively, based on the platform.
|
|
36
38
|
*
|
|
39
|
+
* @returns {Promise<INetworkInterface[]>} Resolves to an array of network interfaces with their information.
|
|
37
40
|
* @since 4.9.0
|
|
41
|
+
*
|
|
42
|
+
* @example // {@link https://github.com/signageos/applet-examples/tree/master/examples/management-js-api/network | Applet Example with Network Interfaces}
|
|
43
|
+
*
|
|
44
|
+
* @example
|
|
45
|
+
* const interfaces = await sos.management.network.listInterfaces();
|
|
46
|
+
* interfaces.forEach((iface) => {
|
|
47
|
+
* console.log(`Interface: ${iface.name}, IP: ${iface.ipAddress}, MAC: ${iface.macAddress}`);
|
|
48
|
+
* });
|
|
38
49
|
*/
|
|
39
50
|
async listInterfaces() {
|
|
40
51
|
const { interfaces } = await this.postMessage({
|
|
@@ -83,17 +94,20 @@ class Network {
|
|
|
83
94
|
}
|
|
84
95
|
}
|
|
85
96
|
/**
|
|
86
|
-
* The `disableInterface()`
|
|
97
|
+
* The `disableInterface()` turns off a selected network interface.
|
|
87
98
|
*
|
|
88
99
|
* :::warning
|
|
89
|
-
*
|
|
90
|
-
* Don't use this method to disable Wi-Fi. Use [Wi-Fi API](./wifi) to enable/disable Wi-Fi.
|
|
91
|
-
*
|
|
100
|
+
* Don't use this method to disable Wi-Fi. Use [Wi-Fi API](https://developers.signageos.io/sdk/sos_management/wifi) to turn Wi-Fi on/off.
|
|
92
101
|
* :::
|
|
93
102
|
*
|
|
94
|
-
* @param interfaceName The interface name which can be retrieved from the list of interfaces returned by listInterfaces()
|
|
95
|
-
*
|
|
103
|
+
* @param interfaceName The interface name which can be retrieved from the list of interfaces returned by `listInterfaces()`
|
|
104
|
+
* @return {Promise<void>} A promise that resolves when the network interface is disabled.
|
|
105
|
+
* @throws {Error} If the interface name is invalid.
|
|
106
|
+
* @throws {Error} If the device does not support network management.
|
|
96
107
|
* @since 4.13.0
|
|
108
|
+
*
|
|
109
|
+
* @example
|
|
110
|
+
* await sos.management.network.disableInterface('eth0');
|
|
97
111
|
*/
|
|
98
112
|
async disableInterface(interfaceName) {
|
|
99
113
|
(0, Validate_1.default)({ interfaceName }).required().string();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Network.js","sourceRoot":"","sources":["../../../../src/FrontApplet/Management/Network/Network.ts"],"names":[],"mappings":";;;;;AACA,iDAQwB;AACxB,uEAA+C;AAG/C
|
|
1
|
+
{"version":3,"file":"Network.js","sourceRoot":"","sources":["../../../../src/FrontApplet/Management/Network/Network.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,6 +3,17 @@ import IOSInfo from './IOSInfo';
|
|
|
3
3
|
import IOS, { SystemMemoryInfo } from './IOS';
|
|
4
4
|
/**
|
|
5
5
|
* The `sos.management.os` API groups together methods for retrieving information about the system.
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* <details>
|
|
9
|
+
* <summary>OS Management Capabilities</summary>
|
|
10
|
+
* | Capability | Description |
|
|
11
|
+
* |:------------|:-------------|
|
|
12
|
+
* | `SYSTEM_CPU` | If device supports collecting CPU usage information |
|
|
13
|
+
* | `SYSTEM_MEMORY` | If device supports collecting memory usage information |
|
|
14
|
+
*
|
|
15
|
+
* If you want to check if the device supports those capabilities, use [`sos.management.supports()`](https://developers.signageos.io/sdk/sos_management/#supports).
|
|
16
|
+
* </details>
|
|
6
17
|
*/
|
|
7
18
|
export default class OS implements IOS {
|
|
8
19
|
private messagePrefix;
|
|
@@ -10,22 +21,39 @@ export default class OS implements IOS {
|
|
|
10
21
|
/** @internal */
|
|
11
22
|
constructor(messagePrefix: string, postMessage: IPostMessage<any>);
|
|
12
23
|
/**
|
|
13
|
-
* The `getInfo()` method returns info about the system of the device, such as what current version of it is installed on
|
|
14
|
-
* version of current operating system. It's usually 1 or 2 digits including or excluding dot notation.
|
|
24
|
+
* The `getInfo()` method returns info about the system of the device, such as what current version of it is installed on the device. Major
|
|
25
|
+
* version of the current operating system. It's usually 1 or 2 digits, including or excluding dot notation.
|
|
15
26
|
*
|
|
27
|
+
* @returns {Promise<IOSInfo>} Resolves to an object containing information about the operating system.
|
|
16
28
|
* @since 5.0.0
|
|
29
|
+
*
|
|
30
|
+
* @example
|
|
31
|
+
* const osInfo = await sos.management.os.getInfo();
|
|
32
|
+
* console.log(`Current OS version is: ${osInfo.version}`);
|
|
17
33
|
*/
|
|
18
34
|
getInfo(): Promise<IOSInfo>;
|
|
19
35
|
/**
|
|
20
|
-
* The `getCpuUsage()` method returns current CPU usage (ranging 0
|
|
36
|
+
* The `getCpuUsage()` method returns the current total CPU usage (ranging from 0 to 100%).
|
|
21
37
|
*
|
|
38
|
+
* @throws {Error} If the CPU usage is not supported.
|
|
39
|
+
* @returns {Promise<number>} Resolves to the current CPU usage percentage.
|
|
22
40
|
* @since 5.4.0
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* const cpuUsage = await sos.management.os.getCpuUsage();
|
|
44
|
+
* console.log(`Current CPU usage is: ${cpuUsage}%`);
|
|
23
45
|
*/
|
|
24
46
|
getCpuUsage(): Promise<number>;
|
|
25
47
|
/**
|
|
26
|
-
* The `getMemoryUsage()` method returns total memory amount in bytes, currently used memory and remaining free memory.
|
|
48
|
+
* The `getMemoryUsage()` method returns the total memory amount in bytes, the currently used memory, and the remaining free memory.
|
|
27
49
|
*
|
|
50
|
+
* @throws {Error} If the memory usage is not supported.
|
|
51
|
+
* @returns {Promise<SystemMemoryInfo>} Resolves to an object containing total, used, and free memory in bytes.
|
|
28
52
|
* @since 5.4.0
|
|
53
|
+
*
|
|
54
|
+
* @example
|
|
55
|
+
* const memoryUsage = await sos.management.os.getMemoryUsage();
|
|
56
|
+
* console.log(`Memory usage: ${((memoryUsage.used / memoryUsage.total) * 100).toFixed(2)}%`);
|
|
29
57
|
*/
|
|
30
58
|
getMemoryUsage(): Promise<SystemMemoryInfo>;
|
|
31
59
|
private getMessage;
|
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
/**
|
|
4
4
|
* The `sos.management.os` API groups together methods for retrieving information about the system.
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* <details>
|
|
8
|
+
* <summary>OS Management Capabilities</summary>
|
|
9
|
+
* | Capability | Description |
|
|
10
|
+
* |:------------|:-------------|
|
|
11
|
+
* | `SYSTEM_CPU` | If device supports collecting CPU usage information |
|
|
12
|
+
* | `SYSTEM_MEMORY` | If device supports collecting memory usage information |
|
|
13
|
+
*
|
|
14
|
+
* If you want to check if the device supports those capabilities, use [`sos.management.supports()`](https://developers.signageos.io/sdk/sos_management/#supports).
|
|
15
|
+
* </details>
|
|
5
16
|
*/
|
|
6
17
|
class OS {
|
|
7
18
|
messagePrefix;
|
|
@@ -12,10 +23,15 @@ class OS {
|
|
|
12
23
|
this.postMessage = postMessage;
|
|
13
24
|
}
|
|
14
25
|
/**
|
|
15
|
-
* The `getInfo()` method returns info about the system of the device, such as what current version of it is installed on
|
|
16
|
-
* version of current operating system. It's usually 1 or 2 digits including or excluding dot notation.
|
|
26
|
+
* The `getInfo()` method returns info about the system of the device, such as what current version of it is installed on the device. Major
|
|
27
|
+
* version of the current operating system. It's usually 1 or 2 digits, including or excluding dot notation.
|
|
17
28
|
*
|
|
29
|
+
* @returns {Promise<IOSInfo>} Resolves to an object containing information about the operating system.
|
|
18
30
|
* @since 5.0.0
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* const osInfo = await sos.management.os.getInfo();
|
|
34
|
+
* console.log(`Current OS version is: ${osInfo.version}`);
|
|
19
35
|
*/
|
|
20
36
|
async getInfo() {
|
|
21
37
|
const { osInfo } = await this.postMessage({
|
|
@@ -24,9 +40,15 @@ class OS {
|
|
|
24
40
|
return osInfo;
|
|
25
41
|
}
|
|
26
42
|
/**
|
|
27
|
-
* The `getCpuUsage()` method returns current CPU usage (ranging 0
|
|
43
|
+
* The `getCpuUsage()` method returns the current total CPU usage (ranging from 0 to 100%).
|
|
28
44
|
*
|
|
45
|
+
* @throws {Error} If the CPU usage is not supported.
|
|
46
|
+
* @returns {Promise<number>} Resolves to the current CPU usage percentage.
|
|
29
47
|
* @since 5.4.0
|
|
48
|
+
*
|
|
49
|
+
* @example
|
|
50
|
+
* const cpuUsage = await sos.management.os.getCpuUsage();
|
|
51
|
+
* console.log(`Current CPU usage is: ${cpuUsage}%`);
|
|
30
52
|
*/
|
|
31
53
|
async getCpuUsage() {
|
|
32
54
|
const { cpuUsage } = await this.postMessage({
|
|
@@ -35,9 +57,15 @@ class OS {
|
|
|
35
57
|
return cpuUsage;
|
|
36
58
|
}
|
|
37
59
|
/**
|
|
38
|
-
* The `getMemoryUsage()` method returns total memory amount in bytes, currently used memory and remaining free memory.
|
|
60
|
+
* The `getMemoryUsage()` method returns the total memory amount in bytes, the currently used memory, and the remaining free memory.
|
|
39
61
|
*
|
|
62
|
+
* @throws {Error} If the memory usage is not supported.
|
|
63
|
+
* @returns {Promise<SystemMemoryInfo>} Resolves to an object containing total, used, and free memory in bytes.
|
|
40
64
|
* @since 5.4.0
|
|
65
|
+
*
|
|
66
|
+
* @example
|
|
67
|
+
* const memoryUsage = await sos.management.os.getMemoryUsage();
|
|
68
|
+
* console.log(`Memory usage: ${((memoryUsage.used / memoryUsage.total) * 100).toFixed(2)}%`);
|
|
41
69
|
*/
|
|
42
70
|
async getMemoryUsage() {
|
|
43
71
|
const { memoryUsage } = await this.postMessage({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OS.js","sourceRoot":"","sources":["../../../../src/FrontApplet/Management/OS/OS.ts"],"names":[],"mappings":";;AAIA
|
|
1
|
+
{"version":3,"file":"OS.js","sourceRoot":"","sources":["../../../../src/FrontApplet/Management/OS/OS.ts"],"names":[],"mappings":";;AAIA;;;;;;;;;;;;;GAaG;AACH,MAAqB,EAAE;IAGb;IACA;IAHT,gBAAgB;IAChB,YACS,aAAqB,EACrB,WAA8B;QAD9B,kBAAa,GAAb,aAAa,CAAQ;QACrB,gBAAW,GAAX,WAAW,CAAmB;IACpC,CAAC;IAEJ;;;;;;;;;;OAUG;IACI,KAAK,CAAC,OAAO;QACnB,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC;YACzC,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC;SACpC,CAAC,CAAC;QAEH,OAAO,MAAM,CAAC;IACf,CAAC;IAED;;;;;;;;;;OAUG;IACI,KAAK,CAAC,WAAW;QACvB,MAAM,EAAE,QAAQ,EAAE,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC;YAC3C,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC;SACtC,CAAC,CAAC;QAEH,OAAO,QAAQ,CAAC;IACjB,CAAC;IAED;;;;;;;;;;OAUG;IACI,KAAK,CAAC,cAAc;QAC1B,MAAM,EAAE,WAAW,EAAE,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC;YAC9C,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,kBAAkB,CAAC;SACzC,CAAC,CAAC;QAEH,OAAO,WAAW,CAAC;IACpB,CAAC;IAEO,UAAU,CAAC,IAAY;QAC9B,OAAO,IAAI,CAAC,aAAa,GAAG,GAAG,GAAG,IAAI,CAAC;IACxC,CAAC;CACD;AAnED,qBAmEC"}
|
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
import IPostMessage from '../../IPostMessage';
|
|
2
2
|
import IPackage from './IPackage';
|
|
3
3
|
/**
|
|
4
|
-
* The `sos.management.package` API groups together methods for installing
|
|
4
|
+
* The `sos.management.package` API groups together methods for installing custom Android packages.
|
|
5
|
+
*
|
|
6
|
+
* <details>
|
|
7
|
+
* <summary>Package Management Capabilities</summary>
|
|
8
|
+
* | Capability | Description |
|
|
9
|
+
* |:------------|:-------------|
|
|
10
|
+
* | `PACKAGE_INSTALL` | If device supports installing packages |
|
|
11
|
+
* | `STOP_PACKAGE` | If device supports stopping packages |
|
|
12
|
+
*
|
|
13
|
+
* If you want to check if the device supports those capabilities, use [`sos.management.supports()`](https://developers.signageos.io/sdk/sos_management/#supports).
|
|
14
|
+
* </details>
|
|
5
15
|
*/
|
|
6
16
|
export default class Package implements IPackage {
|
|
7
17
|
private messagePrefix;
|
|
@@ -9,12 +19,17 @@ export default class Package implements IPackage {
|
|
|
9
19
|
/** @internal */
|
|
10
20
|
constructor(messagePrefix: string, postMessage: IPostMessage<any>);
|
|
11
21
|
/**
|
|
12
|
-
* The `install()` method installs a
|
|
22
|
+
* The `install()` method installs a particular package from the specified URL.
|
|
13
23
|
*
|
|
14
24
|
* @param baseUrl URL where the package is available
|
|
15
|
-
* @param packageName Name of the
|
|
25
|
+
* @param packageName Name of the Android package
|
|
16
26
|
* @param version Package version
|
|
17
27
|
* @param build If relevant for your device
|
|
28
|
+
* @returns {Promise<void>} A promise that resolves when the package is successfully installed.
|
|
29
|
+
* @throws {Error} If `baseUrl` is not a valid URL
|
|
30
|
+
* @throws {Error} If `packageName` is not a string
|
|
31
|
+
* @throws {Error} If `version` is not a string
|
|
32
|
+
* @throws {Error} If `build` is not a string or null
|
|
18
33
|
*/
|
|
19
34
|
install(baseUrl: string, packageName: string, version: string, build: string | null): Promise<void>;
|
|
20
35
|
/**
|
|
@@ -5,7 +5,17 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
const Validate_1 = __importDefault(require("../../Validate/Validate"));
|
|
7
7
|
/**
|
|
8
|
-
* The `sos.management.package` API groups together methods for installing
|
|
8
|
+
* The `sos.management.package` API groups together methods for installing custom Android packages.
|
|
9
|
+
*
|
|
10
|
+
* <details>
|
|
11
|
+
* <summary>Package Management Capabilities</summary>
|
|
12
|
+
* | Capability | Description |
|
|
13
|
+
* |:------------|:-------------|
|
|
14
|
+
* | `PACKAGE_INSTALL` | If device supports installing packages |
|
|
15
|
+
* | `STOP_PACKAGE` | If device supports stopping packages |
|
|
16
|
+
*
|
|
17
|
+
* If you want to check if the device supports those capabilities, use [`sos.management.supports()`](https://developers.signageos.io/sdk/sos_management/#supports).
|
|
18
|
+
* </details>
|
|
9
19
|
*/
|
|
10
20
|
class Package {
|
|
11
21
|
messagePrefix;
|
|
@@ -15,14 +25,18 @@ class Package {
|
|
|
15
25
|
this.messagePrefix = messagePrefix;
|
|
16
26
|
this.postMessage = postMessage;
|
|
17
27
|
}
|
|
18
|
-
// TODO: build param
|
|
19
28
|
/**
|
|
20
|
-
* The `install()` method installs a
|
|
29
|
+
* The `install()` method installs a particular package from the specified URL.
|
|
21
30
|
*
|
|
22
31
|
* @param baseUrl URL where the package is available
|
|
23
|
-
* @param packageName Name of the
|
|
32
|
+
* @param packageName Name of the Android package
|
|
24
33
|
* @param version Package version
|
|
25
34
|
* @param build If relevant for your device
|
|
35
|
+
* @returns {Promise<void>} A promise that resolves when the package is successfully installed.
|
|
36
|
+
* @throws {Error} If `baseUrl` is not a valid URL
|
|
37
|
+
* @throws {Error} If `packageName` is not a string
|
|
38
|
+
* @throws {Error} If `version` is not a string
|
|
39
|
+
* @throws {Error} If `build` is not a string or null
|
|
26
40
|
*/
|
|
27
41
|
async install(baseUrl, packageName, version, build) {
|
|
28
42
|
(0, Validate_1.default)({ baseUrl }).required().uri();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Package.js","sourceRoot":"","sources":["../../../../src/FrontApplet/Management/Package/Package.ts"],"names":[],"mappings":";;;;;AACA,uEAA+C;AAG/C
|
|
1
|
+
{"version":3,"file":"Package.js","sourceRoot":"","sources":["../../../../src/FrontApplet/Management/Package/Package.ts"],"names":[],"mappings":";;;;;AACA,uEAA+C;AAG/C;;;;;;;;;;;;GAYG;AACH,MAAqB,OAAO;IAGlB;IACA;IAHT,gBAAgB;IAChB,YACS,aAAqB,EACrB,WAA8B;QAD9B,kBAAa,GAAb,aAAa,CAAQ;QACrB,gBAAW,GAAX,WAAW,CAAmB;IACpC,CAAC;IAEJ;;;;;;;;;;;;OAYG;IACI,KAAK,CAAC,OAAO,CAAC,OAAe,EAAE,WAAmB,EAAE,OAAe,EAAE,KAAoB;QAC/F,IAAA,kBAAQ,EAAC,EAAE,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,GAAG,EAAE,CAAC;QACvC,IAAA,kBAAQ,EAAC,EAAE,WAAW,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,MAAM,EAAE,CAAC;QAC9C,IAAA,kBAAQ,EAAC,EAAE,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,MAAM,EAAE,CAAC;QAC1C,IAAA,kBAAQ,EAAC,EAAE,KAAK,EAAE,CAAC,CAAC,SAAS,EAAE,CAAC,QAAQ,EAAE,CAAC,MAAM,EAAE,CAAC;QACpD,MAAM,IAAI,CAAC,WAAW,CAAC;YACtB,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,iBAAiB,CAAC;YACxC,OAAO;YACP,WAAW;YACX,OAAO;YACP,KAAK;SACL,CAAC,CAAC;IACJ,CAAC;IAED;;;;;;;OAOG;IACI,KAAK,CAAC,IAAI,CAAC,WAAmB;QACpC,IAAA,kBAAQ,EAAC,EAAE,WAAW,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,MAAM,EAAE,CAAC;QAC9C,MAAM,EAAE,OAAO,EAAE,GAAG,MAAM,IAAI,CAAC,WAAW,CAAC;YAC1C,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC;YACrC,WAAW;SACX,CAAC,CAAC;QAEH,OAAO,OAAO,CAAC;IAChB,CAAC;IAEO,UAAU,CAAC,IAAY;QAC9B,OAAO,IAAI,CAAC,aAAa,GAAG,GAAG,GAAG,IAAI,CAAC;IACxC,CAAC;CACD;AAvDD,0BAuDC"}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { ITimer, TimerType } from '../helpers/TimerHelper';
|
|
2
2
|
import { IProprietaryTimer, ProprietaryTimerType } from '../helpers/ProprietaryTimerHelper';
|
|
3
|
+
/**
|
|
4
|
+
* Interface representing the scheduled reboot action.
|
|
5
|
+
*/
|
|
3
6
|
export interface IScheduledRebootActions {
|
|
4
7
|
id: string;
|
|
5
8
|
rule: IScheduledRebootRule;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IPower.js","sourceRoot":"","sources":["../../../../src/FrontApplet/Management/Power/IPower.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"IPower.js","sourceRoot":"","sources":["../../../../src/FrontApplet/Management/Power/IPower.ts"],"names":[],"mappings":";;;AAuBA;;;GAGG;AACH,IAAY,eAQX;AARD,WAAY,eAAe;IAC1B,yDAAU,CAAA;IACV,yDAAU,CAAA;IACV,2DAAW,CAAA;IACX,+DAAa,CAAA;IACb,6DAAY,CAAA;IACZ,yDAAU,CAAA;IACV,6DAAY,CAAA;AACb,CAAC,EARW,eAAe,+BAAf,eAAe,QAQ1B;AAED,IAAY,YAQX;AARD,WAAY,YAAY;IACvB,iCAAiB,CAAA;IACjB,iCAAiB,CAAA;IACjB,mCAAmB,CAAA;IACnB,uCAAuB,CAAA;IACvB,qCAAqB,CAAA;IACrB,iCAAiB,CAAA;IACjB,qCAAqB,CAAA;AACtB,CAAC,EARW,YAAY,4BAAZ,YAAY,QAQvB"}
|