@widget-js/core 24.1.1-beta.34 → 24.1.1-beta.40

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/index.cjs CHANGED
@@ -2856,21 +2856,12 @@ var ProcessApiImpl = class extends BaseApi {
2856
2856
  getBlinkMemoryInfo() {
2857
2857
  return this.invokeMethod("getBlinkMemoryInfo");
2858
2858
  }
2859
- getCPUUsage() {
2860
- return this.invokeMethod("getCPUUsage");
2861
- }
2862
2859
  getHeapStatistics() {
2863
2860
  return this.invokeMethod("getHeapStatistics");
2864
2861
  }
2865
- getIOCounters() {
2866
- return this.invokeMethod("getIOCounters");
2867
- }
2868
2862
  getProcessMemoryInfo() {
2869
2863
  return this.invokeMethod("getProcessMemoryInfo");
2870
2864
  }
2871
- getSystemMemoryInfo() {
2872
- return this.invokeMethod("getSystemMemoryInfo");
2873
- }
2874
2865
  getSystemVersion() {
2875
2866
  return this.invokeMethod("getSystemVersion");
2876
2867
  }
@@ -3099,20 +3090,11 @@ var SystemApiImpl = class extends BaseApi {
3099
3090
  getWallpaper() {
3100
3091
  return this.invokeMethod("getWallpaper");
3101
3092
  }
3102
- getCpu() {
3103
- return this.invokeMethod("getCpu");
3104
- }
3105
- getCpuCurrentSpeed() {
3106
- return this.invokeMethod("getCpuCurrentSpeed");
3107
- }
3108
- getGraphics() {
3109
- return this.invokeMethod("getGraphics");
3110
- }
3111
- getMemory() {
3112
- return this.invokeMethod("getMemory");
3093
+ getHardware(hardwareType) {
3094
+ return this.invokeMethod("getHardware", hardwareType);
3113
3095
  }
3114
- getOsInfo() {
3115
- return this.invokeMethod("getOsInfo");
3096
+ getHardwareSensor(hardwareType, sensorType) {
3097
+ return this.invokeMethod("getHardwareSensor", hardwareType, sensorType);
3116
3098
  }
3117
3099
  };
3118
3100
  var SystemApi = new SystemApiImpl();