eufy-security-client 3.7.2-dev.2 → 3.7.2-dev.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.
@@ -195,6 +195,7 @@ export declare class Device extends TypedEmitter<DeviceEvents> {
195
195
  isCamera2C(): boolean;
196
196
  isCamera2Pro(): boolean;
197
197
  isCamera2CPro(): boolean;
198
+ isCameraE40(): boolean;
198
199
  isCamera2Product(): boolean;
199
200
  isCamera3(): boolean;
200
201
  isCamera3C(): boolean;
@@ -2223,9 +2223,11 @@ class Device extends tiny_typed_emitter_1.TypedEmitter {
2223
2223
  sn.startsWith("T8172") ||
2224
2224
  sn.startsWith("T8173") ||
2225
2225
  sn.startsWith("T86P2") ||
2226
+ sn.startsWith("T8214") ||
2226
2227
  sn.startsWith("T8422") ||
2227
2228
  sn.startsWith("T8423") ||
2228
2229
  sn.startsWith("T8424") ||
2230
+ sn.startsWith("T8425") ||
2229
2231
  sn.startsWith("T8426") ||
2230
2232
  sn.startsWith("T8440") ||
2231
2233
  sn.startsWith("T8441") ||
@@ -2474,6 +2476,9 @@ class Device extends tiny_typed_emitter_1.TypedEmitter {
2474
2476
  isCamera2CPro() {
2475
2477
  return Device.isCamera2CPro(this.rawDevice.device_type);
2476
2478
  }
2479
+ isCameraE40() {
2480
+ return Device.isCameraE40(this.rawDevice.device_type);
2481
+ }
2477
2482
  isCamera2Product() {
2478
2483
  return Device.isCamera2Product(this.rawDevice.device_type);
2479
2484
  }