hoffmation-base 3.7.0 → 3.7.1
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.
|
@@ -33,6 +33,8 @@ class OwnUnifiAirQualitySensor extends RoomBaseDevice_1.RoomBaseDevice {
|
|
|
33
33
|
this._sensor = null;
|
|
34
34
|
this._lastReportedTemperature = undefined;
|
|
35
35
|
this._lastReportedHumidity = undefined;
|
|
36
|
+
// The projection reaches back into the Protect client, whose object graph is self-referential.
|
|
37
|
+
this.jsonOmitKeys.push('_sensor');
|
|
36
38
|
this.deviceCapabilities.push(enums_1.DeviceCapability.temperatureSensor);
|
|
37
39
|
this.deviceCapabilities.push(enums_1.DeviceCapability.humiditySensor);
|
|
38
40
|
this.deviceCapabilities.push(enums_1.DeviceCapability.airQualitySensor);
|
|
@@ -16,6 +16,8 @@ class OwnUnifiCamera extends index_1.CameraDevice {
|
|
|
16
16
|
this.currentImageLink = '';
|
|
17
17
|
// @ts-expect-error Kamera-Projektion wird später verwendet
|
|
18
18
|
this._camera = null;
|
|
19
|
+
// The projection reaches back into the Protect client, whose object graph is self-referential.
|
|
20
|
+
this.jsonOmitKeys.push('_camera');
|
|
19
21
|
this.unifiCameraName = unifiCameraName;
|
|
20
22
|
}
|
|
21
23
|
/**
|