hoffmation-base 3.0.2 → 3.0.3

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.
@@ -32,9 +32,6 @@ class DeviceCluster {
32
32
  case deviceType_1.DeviceType.Sonos:
33
33
  clusterTypes.push(device_cluster_type_1.DeviceClusterType.Speaker);
34
34
  break;
35
- case deviceType_1.DeviceType.SamsungTv:
36
- clusterTypes.push(device_cluster_type_1.DeviceClusterType.Tv);
37
- break;
38
35
  case deviceType_1.DeviceType.Camera:
39
36
  clusterTypes.push(device_cluster_type_1.DeviceClusterType.Camera);
40
37
  clusterTypes.push(device_cluster_type_1.DeviceClusterType.MotionDetection);
@@ -55,7 +55,6 @@ export declare enum DeviceType {
55
55
  Sonos = 3001,
56
56
  Espresense = 4001,
57
57
  TrackableDevice = 4002,
58
- SamsungTv = 5001,
59
58
  Camera = 6001,
60
59
  Victron = 7001,
61
60
  Dachs = 7002,
@@ -59,7 +59,6 @@ var DeviceType;
59
59
  DeviceType[DeviceType["Sonos"] = 3001] = "Sonos";
60
60
  DeviceType[DeviceType["Espresense"] = 4001] = "Espresense";
61
61
  DeviceType[DeviceType["TrackableDevice"] = 4002] = "TrackableDevice";
62
- DeviceType[DeviceType["SamsungTv"] = 5001] = "SamsungTv";
63
62
  DeviceType[DeviceType["Camera"] = 6001] = "Camera";
64
63
  DeviceType[DeviceType["Victron"] = 7001] = "Victron";
65
64
  DeviceType[DeviceType["Dachs"] = 7002] = "Dachs";
@@ -1,4 +1,3 @@
1
1
  export declare enum TvDeviceType {
2
- Unknown = 0,
3
- Samsung = 1
2
+ Unknown = 0
4
3
  }
@@ -4,5 +4,4 @@ exports.TvDeviceType = void 0;
4
4
  var TvDeviceType;
5
5
  (function (TvDeviceType) {
6
6
  TvDeviceType[TvDeviceType["Unknown"] = 0] = "Unknown";
7
- TvDeviceType[TvDeviceType["Samsung"] = 1] = "Samsung";
8
7
  })(TvDeviceType || (exports.TvDeviceType = TvDeviceType = {}));