@homebridge-eufy-security/eufy-security-client 3.7.2-dev.6 → 3.8.0-dev.8

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.
Files changed (40) hide show
  1. package/README.md +27 -0
  2. package/build/eufysecurity.d.ts +2 -0
  3. package/build/eufysecurity.js +27 -0
  4. package/build/eufysecurity.js.map +1 -1
  5. package/build/http/api.d.ts +2 -0
  6. package/build/http/api.js +39 -6
  7. package/build/http/api.js.map +1 -1
  8. package/build/http/device.d.ts +16 -1
  9. package/build/http/device.js +79 -13
  10. package/build/http/device.js.map +1 -1
  11. package/build/http/interfaces.d.ts +1 -0
  12. package/build/http/models.d.ts +1 -0
  13. package/build/http/station.d.ts +9 -1
  14. package/build/http/station.js +39 -12
  15. package/build/http/station.js.map +1 -1
  16. package/build/http/types.d.ts +6 -0
  17. package/build/http/types.js +386 -6
  18. package/build/http/types.js.map +1 -1
  19. package/build/p2p/adts.d.ts +12 -0
  20. package/build/p2p/adts.js +185 -0
  21. package/build/p2p/adts.js.map +1 -0
  22. package/build/p2p/interfaces.d.ts +10 -0
  23. package/build/p2p/session.d.ts +3 -1
  24. package/build/p2p/session.js +121 -29
  25. package/build/p2p/session.js.map +1 -1
  26. package/build/p2p/types.d.ts +1 -0
  27. package/build/p2p/types.js +1 -0
  28. package/build/p2p/types.js.map +1 -1
  29. package/build/p2p/utils.d.ts +10 -0
  30. package/build/p2p/utils.js +64 -2
  31. package/build/p2p/utils.js.map +1 -1
  32. package/build/push/service.js +1 -1
  33. package/build/push/service.js.map +1 -1
  34. package/coverage/clover.xml +10961 -10772
  35. package/coverage/coverage-final.json +27 -26
  36. package/coverage/lcov-report/index.html +59 -59
  37. package/coverage/lcov.info +18960 -18612
  38. package/package.json +5 -1
  39. package/scripts/cut_release.sh +2 -0
  40. package/scripts/generate_changelog.sh +93 -0
@@ -17,6 +17,7 @@ export declare enum DeviceType {
17
17
  BATTERY_DOORBELL_2 = 16,
18
18
  HB3 = 18,
19
19
  CAMERA3 = 19,
20
+ WATER_FREEZE_SENSOR_8920 = 20,
20
21
  CAMERA3C = 23,
21
22
  PROFESSIONAL_247 = 24,// T8600
22
23
  MINIBASE_CHIME = 25,
@@ -60,12 +61,14 @@ export declare enum DeviceType {
60
61
  BATTERY_DOORBELL_PLUS_E340 = 94,
61
62
  BATTERY_DOORBELL_C30 = 95,
62
63
  BATTERY_DOORBELL_C31 = 96,
64
+ SOLOCAM_E42 = 98,//T8173
63
65
  INDOOR_COST_DOWN_CAMERA = 100,
64
66
  CAMERA_GUN = 101,
65
67
  CAMERA_SNAIL = 102,
66
68
  INDOOR_PT_CAMERA_S350 = 104,
67
69
  INDOOR_PT_CAMERA_E30 = 105,
68
70
  CAMERA_FG = 110,//T8150
71
+ CAMERA_4G_S330 = 111,//T86P2
69
72
  SIREN_SENSOR_E20 = 123,
70
73
  ENTRY_SENSOR_E20 = 126,
71
74
  PIR_SENSOR_E20 = 127,
@@ -85,10 +88,13 @@ export declare enum DeviceType {
85
88
  LOCK_85D0 = 202,
86
89
  LOCK_85L0 = 201,
87
90
  LOCK_85V0 = 203,
91
+ NVR_S4_MAX = 300,//T8N00
92
+ CAMERA_POE_S4 = 301,//T8E00
88
93
  WALL_LIGHT_CAM_81A0 = 10005,
89
94
  INDOOR_PT_CAMERA_C220 = 10008,// T8W11C
90
95
  INDOOR_PT_CAMERA_C210 = 10009,// T8419 / T8W11P?
91
96
  INDOOR_PT_CAMERA_C220_V2 = 10010,// T8W11C (Type 10010)
97
+ INDOOR_PT_CAMERA_C220_V3 = 10011,// T8419N
92
98
  CAMERA_C35 = 10035
93
99
  }
94
100
  export declare enum ParamType {
@@ -31,6 +31,7 @@ var DeviceType;
31
31
  DeviceType[DeviceType["BATTERY_DOORBELL_2"] = 16] = "BATTERY_DOORBELL_2";
32
32
  DeviceType[DeviceType["HB3"] = 18] = "HB3";
33
33
  DeviceType[DeviceType["CAMERA3"] = 19] = "CAMERA3";
34
+ DeviceType[DeviceType["WATER_FREEZE_SENSOR_8920"] = 20] = "WATER_FREEZE_SENSOR_8920";
34
35
  DeviceType[DeviceType["CAMERA3C"] = 23] = "CAMERA3C";
35
36
  DeviceType[DeviceType["PROFESSIONAL_247"] = 24] = "PROFESSIONAL_247";
36
37
  DeviceType[DeviceType["MINIBASE_CHIME"] = 25] = "MINIBASE_CHIME";
@@ -74,12 +75,14 @@ var DeviceType;
74
75
  DeviceType[DeviceType["BATTERY_DOORBELL_PLUS_E340"] = 94] = "BATTERY_DOORBELL_PLUS_E340";
75
76
  DeviceType[DeviceType["BATTERY_DOORBELL_C30"] = 95] = "BATTERY_DOORBELL_C30";
76
77
  DeviceType[DeviceType["BATTERY_DOORBELL_C31"] = 96] = "BATTERY_DOORBELL_C31";
78
+ DeviceType[DeviceType["SOLOCAM_E42"] = 98] = "SOLOCAM_E42";
77
79
  DeviceType[DeviceType["INDOOR_COST_DOWN_CAMERA"] = 100] = "INDOOR_COST_DOWN_CAMERA";
78
80
  DeviceType[DeviceType["CAMERA_GUN"] = 101] = "CAMERA_GUN";
79
81
  DeviceType[DeviceType["CAMERA_SNAIL"] = 102] = "CAMERA_SNAIL";
80
82
  DeviceType[DeviceType["INDOOR_PT_CAMERA_S350"] = 104] = "INDOOR_PT_CAMERA_S350";
81
83
  DeviceType[DeviceType["INDOOR_PT_CAMERA_E30"] = 105] = "INDOOR_PT_CAMERA_E30";
82
84
  DeviceType[DeviceType["CAMERA_FG"] = 110] = "CAMERA_FG";
85
+ DeviceType[DeviceType["CAMERA_4G_S330"] = 111] = "CAMERA_4G_S330";
83
86
  DeviceType[DeviceType["SIREN_SENSOR_E20"] = 123] = "SIREN_SENSOR_E20";
84
87
  DeviceType[DeviceType["ENTRY_SENSOR_E20"] = 126] = "ENTRY_SENSOR_E20";
85
88
  DeviceType[DeviceType["PIR_SENSOR_E20"] = 127] = "PIR_SENSOR_E20";
@@ -99,10 +102,13 @@ var DeviceType;
99
102
  DeviceType[DeviceType["LOCK_85D0"] = 202] = "LOCK_85D0";
100
103
  DeviceType[DeviceType["LOCK_85L0"] = 201] = "LOCK_85L0";
101
104
  DeviceType[DeviceType["LOCK_85V0"] = 203] = "LOCK_85V0";
105
+ DeviceType[DeviceType["NVR_S4_MAX"] = 300] = "NVR_S4_MAX";
106
+ DeviceType[DeviceType["CAMERA_POE_S4"] = 301] = "CAMERA_POE_S4";
102
107
  DeviceType[DeviceType["WALL_LIGHT_CAM_81A0"] = 10005] = "WALL_LIGHT_CAM_81A0";
103
108
  DeviceType[DeviceType["INDOOR_PT_CAMERA_C220"] = 10008] = "INDOOR_PT_CAMERA_C220";
104
109
  DeviceType[DeviceType["INDOOR_PT_CAMERA_C210"] = 10009] = "INDOOR_PT_CAMERA_C210";
105
110
  DeviceType[DeviceType["INDOOR_PT_CAMERA_C220_V2"] = 10010] = "INDOOR_PT_CAMERA_C220_V2";
111
+ DeviceType[DeviceType["INDOOR_PT_CAMERA_C220_V3"] = 10011] = "INDOOR_PT_CAMERA_C220_V3";
106
112
  DeviceType[DeviceType["CAMERA_C35"] = 10035] = "CAMERA_C35";
107
113
  })(DeviceType || (exports.DeviceType = DeviceType = {}));
108
114
  var ParamType;
@@ -962,6 +968,7 @@ exports.GenericTypeProperty = {
962
968
  16: "Battery Doorbell 2",
963
969
  18: "HomeBase S380 (HomeBase 3; T8030)",
964
970
  19: "eufyCam S330 (eufyCam 3)",
971
+ 20: "eufy Water and Freeze Sensor T8920",
965
972
  23: "eufyCam S300 (eufyCam 3C)",
966
973
  24: "eufyCam E330 (Professional)",
967
974
  25: "MiniBase Chime",
@@ -981,6 +988,7 @@ exports.GenericTypeProperty = {
981
988
  46: "Outdoor Camera 1080P",
982
989
  47: "Floodlight Camera E340",
983
990
  48: "Solo Camera S340",
991
+ 49: "eufyCam E40 (T8144)",
984
992
  50: "Lock Basic",
985
993
  51: "Lock Advanced",
986
994
  52: "Lock Basic No Finger",
@@ -1003,11 +1011,15 @@ exports.GenericTypeProperty = {
1003
1011
  93: "Video Doorbell Dual (Wired)",
1004
1012
  94: "Video Doorbell Dual (E340)",
1005
1013
  95: "Video Doorbell (C30)",
1014
+ 96: "Video Doorbell (C31)",
1015
+ 98: "SoloCam E42 (T8173)",
1006
1016
  100: "Indoor Cost Down Camera",
1007
1017
  101: "Camera Gun",
1008
1018
  102: "Camera Snail",
1009
1019
  104: "Indoor Camera S350",
1020
+ 105: "Indoor Cam E30",
1010
1021
  110: "Starlight 4G LTE", //T8150
1022
+ 111: "4G LTE Cam S330 (T86P2)",
1011
1023
  123: "Siren Sensor E20",
1012
1024
  126: "Entry Sensor E20",
1013
1025
  127: "Pir Sensor E20",
@@ -1023,13 +1035,17 @@ exports.GenericTypeProperty = {
1023
1035
  159: "SmartTrack Card (T87B2)",
1024
1036
  180: "Smart Lock C210 (T8502)",
1025
1037
  184: "Smart Lock C220 (T8506)",
1038
+ 189: "Security Video Smart Lock E330 (T8531)",
1026
1039
  201: "Smart Lock C33 (T85L0)",
1027
1040
  202: "Smart Lock C30 (T85D0)",
1028
1041
  203: "FamiLock S3 (T85V0)",
1042
+ 300: "NVR S4 Max (T8N00)",
1043
+ 301: "PoE Bullet-PTZ Cam S4 (T8E00)",
1029
1044
  10005: "Solar Wall Light Cam S120 (T81A0)",
1030
1045
  10008: "Indoor Cam C220 (T8W11C)",
1031
1046
  10009: "Indoor Cam C210 (T8419)",
1032
1047
  10010: "Indoor Cam C220 (T8W11C)",
1048
+ 10011: "Indoor Cam C220 (T8419N)",
1033
1049
  10035: "eufyCam C35 (T8110)",
1034
1050
  },
1035
1051
  };
@@ -4909,12 +4925,12 @@ exports.LockT85V0DeviceProperties = {
4909
4925
  ...exports.GenericDeviceProperties,
4910
4926
  [PropertyName.DeviceBattery]: exports.DeviceBatteryProperty,
4911
4927
  [PropertyName.DeviceBatteryTemp]: exports.DeviceBatteryTempProperty,
4912
- [PropertyName.DeviceWifiRSSI]: exports.DeviceWifiRSSIProperty,
4928
+ [PropertyName.DeviceWifiRSSI]: exports.DeviceWifiRSSILockProperty,
4913
4929
  [PropertyName.DeviceWifiSignalLevel]: exports.DeviceWifiSignalLevelProperty,
4914
- [PropertyName.DeviceEnabled]: exports.DeviceEnabledProperty, //OK
4915
- [PropertyName.DeviceAutoNightvision]: exports.DeviceAutoNightvisionProperty, //OK
4916
- [PropertyName.DeviceMotionDetection]: exports.DeviceMotionDetectionProperty, //OK
4917
- [PropertyName.DeviceWatermark]: exports.DeviceWatermarkBatteryDoorbellCamera1Property, //OK
4930
+ [PropertyName.DeviceEnabled]: exports.DeviceEnabledProperty,
4931
+ [PropertyName.DeviceAutoNightvision]: exports.DeviceAutoNightvisionProperty,
4932
+ [PropertyName.DeviceMotionDetection]: exports.DeviceMotionDetectionProperty,
4933
+ [PropertyName.DeviceWatermark]: exports.DeviceWatermarkBatteryDoorbellCamera1Property,
4918
4934
  [PropertyName.DeviceState]: exports.DeviceStateProperty,
4919
4935
  [PropertyName.DeviceLastChargingDays]: exports.DeviceLastChargingDaysProperty,
4920
4936
  [PropertyName.DeviceLastChargingFalseEvents]: exports.DeviceLastChargingFalseEventsProperty,
@@ -6643,6 +6659,67 @@ exports.DeviceProperties = {
6643
6659
  [PropertyName.DeviceRecordingEndClipMotionStops]: exports.DeviceRecordingEndClipMotionStopsProperty,
6644
6660
  [PropertyName.DeviceDualCamWatchViewMode]: exports.DeviceDualCamWatchViewModeS340Property,
6645
6661
  },
6662
+ [DeviceType.SOLOCAM_E42]: {
6663
+ ...exports.GenericDeviceProperties,
6664
+ [PropertyName.DeviceWifiRSSI]: exports.DeviceWifiRSSIProperty,
6665
+ [PropertyName.DeviceWifiSignalLevel]: exports.DeviceWifiSignalLevelProperty,
6666
+ [PropertyName.DeviceEnabled]: exports.DeviceEnabledSoloProperty,
6667
+ [PropertyName.DeviceBattery]: exports.DeviceBatteryProperty,
6668
+ [PropertyName.DeviceBatteryTemp]: exports.DeviceBatteryTempProperty,
6669
+ [PropertyName.DeviceNightvision]: exports.DeviceNightvisionProperty,
6670
+ [PropertyName.DeviceMotionDetection]: exports.DeviceMotionDetectionIndoorSoloFloodProperty,
6671
+ [PropertyName.DeviceWatermark]: exports.DeviceWatermarkProperty,
6672
+ [PropertyName.DeviceState]: exports.DeviceStateProperty,
6673
+ [PropertyName.DeviceLastChargingDays]: exports.DeviceLastChargingDaysProperty,
6674
+ [PropertyName.DeviceLastChargingFalseEvents]: exports.DeviceLastChargingFalseEventsProperty,
6675
+ [PropertyName.DeviceLastChargingRecordedEvents]: exports.DeviceLastChargingRecordedEventsProperty,
6676
+ [PropertyName.DeviceLastChargingTotalEvents]: exports.DeviceLastChargingTotalEventsProperty,
6677
+ [PropertyName.DeviceBatteryUsageLastWeek]: exports.DeviceBatteryUsageLastWeekProperty,
6678
+ [PropertyName.DeviceMotionDetected]: exports.DeviceMotionDetectedProperty,
6679
+ [PropertyName.DevicePersonDetected]: exports.DevicePersonDetectedProperty,
6680
+ [PropertyName.DeviceVehicleDetected]: exports.DeviceVehicleDetectedProperty,
6681
+ [PropertyName.DeviceStatusLed]: exports.DeviceStatusLedIndoorFloodProperty,
6682
+ [PropertyName.DeviceLight]: exports.DeviceFloodlightLightProperty,
6683
+ [PropertyName.DeviceLightSettingsBrightnessManual]: exports.DeviceFloodlightLightSettingsBrightnessManualProperty,
6684
+ [PropertyName.DeviceLightSettingsEnable]: exports.DeviceFloodlightLightSettingsEnableProperty,
6685
+ [PropertyName.DeviceLightSettingsMotionTriggered]: exports.DeviceFloodlightLightSettingsMotionTriggeredProperty,
6686
+ [PropertyName.DevicePicture]: exports.DevicePictureProperty,
6687
+ [PropertyName.DevicePictureUrl]: exports.DevicePictureUrlProperty,
6688
+ [PropertyName.DeviceMotionDetectionSensitivity]: exports.DeviceMotionDetectionSensitivitySoloProperty,
6689
+ [PropertyName.DeviceMicrophone]: exports.DeviceMicrophoneProperty,
6690
+ [PropertyName.DeviceSpeaker]: exports.DeviceSpeakerProperty,
6691
+ [PropertyName.DeviceSpeakerVolume]: exports.DeviceSpeakerVolumeIndoorFloodDoorbellProperty,
6692
+ [PropertyName.DeviceAudioRecording]: exports.DeviceAudioRecordingIndoorSoloFloodlightProperty,
6693
+ [PropertyName.DeviceMotionDetectionTypeHuman]: exports.DeviceMotionHB3DetectionTypeHumanProperty,
6694
+ [PropertyName.DeviceMotionDetectionTypeVehicle]: exports.DeviceMotionHB3DetectionTypeVehicleProperty,
6695
+ [PropertyName.DeviceMotionDetectionTypeAllOtherMotions]: exports.DeviceMotionHB3DetectionTypeAllOtherMotionsProperty,
6696
+ [PropertyName.DeviceMotionTracking]: exports.DeviceMotionTrackingProperty,
6697
+ [PropertyName.DeviceVideoStreamingQuality]: exports.DeviceVideoStreamingQualityS340Property,
6698
+ [PropertyName.DeviceVideoRecordingQuality]: exports.DeviceVideoRecordingQualityS340Property,
6699
+ [PropertyName.DeviceNotificationType]: exports.DeviceNotificationTypeIndoorFloodlightProperty,
6700
+ [PropertyName.DeviceRotationSpeed]: exports.DeviceRotationSpeedProperty,
6701
+ [PropertyName.DeviceMotionZone]: exports.DeviceMotionZoneProperty,
6702
+ [PropertyName.DeviceSnooze]: exports.DeviceSnoozeProperty,
6703
+ [PropertyName.DeviceSnoozeTime]: exports.DeviceSnoozeTimeProperty,
6704
+ [PropertyName.DeviceSnoozeStartTime]: exports.DeviceSnoozeStartTimeProperty,
6705
+ [PropertyName.DevicePersonName]: exports.DevicePersonNameProperty,
6706
+ [PropertyName.DevicePowerSource]: exports.DevicePowerSourceProperty,
6707
+ [PropertyName.DevicePowerWorkingMode]: exports.DevicePowerWorkingModeProperty,
6708
+ [PropertyName.DeviceChargingStatus]: exports.DeviceChargingStatusProperty,
6709
+ [PropertyName.DeviceRecordingClipLength]: exports.DeviceRecordingClipLengthOutdoorPTProperty,
6710
+ [PropertyName.DeviceRecordingRetriggerInterval]: exports.DeviceRecordingRetriggerIntervalProperty,
6711
+ [PropertyName.DeviceRecordingEndClipMotionStops]: exports.DeviceRecordingEndClipMotionStopsProperty,
6712
+ [PropertyName.DeviceDualCamWatchViewMode]: exports.DeviceDualCamWatchViewModeS340Property,
6713
+ [PropertyName.DeviceRTSPStream]: exports.DeviceRTSPStreamProperty,
6714
+ [PropertyName.DeviceRTSPStreamUrl]: exports.DeviceRTSPStreamUrlProperty,
6715
+ [PropertyName.DeviceDetectionStatisticsWorkingDays]: exports.DeviceDetectionStatisticsWorkingDaysProperty,
6716
+ [PropertyName.DeviceDetectionStatisticsDetectedEvents]: exports.DeviceDetectionStatisticsDetectedEventsProperty,
6717
+ [PropertyName.DeviceDetectionStatisticsRecordedEvents]: exports.DeviceDetectionStatisticsRecordedEventsProperty,
6718
+ [PropertyName.DeviceContinuousRecording]: exports.DeviceContinuousRecordingProperty,
6719
+ [PropertyName.DeviceContinuousRecordingType]: exports.DeviceContinuousRecordingTypeProperty,
6720
+ [PropertyName.DeviceVideoTypeStoreToNAS]: exports.DeviceVideoTypeStoreToNASProperty,
6721
+ [PropertyName.DeviceImageMirrored]: exports.DeviceImageMirroredProperty,
6722
+ },
6646
6723
  [DeviceType.INDOOR_PT_CAMERA_S350]: {
6647
6724
  ...exports.GenericDeviceProperties,
6648
6725
  [PropertyName.DeviceWifiRSSI]: exports.DeviceWifiRSSIProperty,
@@ -6902,6 +6979,73 @@ exports.DeviceProperties = {
6902
6979
  [PropertyName.DeviceCellularIMEI]: exports.DeviceCellularIMEIProperty,
6903
6980
  [PropertyName.DeviceCellularICCID]: exports.DeviceCellularICCIDProperty,
6904
6981
  },
6982
+ [DeviceType.CAMERA_4G_S330]: {
6983
+ ...exports.GenericDeviceProperties,
6984
+ [PropertyName.DeviceWifiRSSI]: exports.DeviceWifiRSSIProperty,
6985
+ [PropertyName.DeviceWifiSignalLevel]: exports.DeviceWifiSignalLevelProperty,
6986
+ [PropertyName.DeviceEnabled]: exports.DeviceEnabledSoloProperty,
6987
+ [PropertyName.DeviceBattery]: exports.DeviceBatteryProperty,
6988
+ [PropertyName.DeviceBatteryTemp]: exports.DeviceBatteryTempProperty,
6989
+ [PropertyName.DeviceNightvision]: exports.DeviceNightvisionProperty,
6990
+ [PropertyName.DeviceMotionDetection]: exports.DeviceMotionDetectionIndoorSoloFloodProperty,
6991
+ [PropertyName.DeviceWatermark]: exports.DeviceWatermarkProperty,
6992
+ [PropertyName.DeviceState]: exports.DeviceStateProperty,
6993
+ [PropertyName.DeviceLastChargingDays]: exports.DeviceLastChargingDaysProperty,
6994
+ [PropertyName.DeviceLastChargingFalseEvents]: exports.DeviceLastChargingFalseEventsProperty,
6995
+ [PropertyName.DeviceLastChargingRecordedEvents]: exports.DeviceLastChargingRecordedEventsProperty,
6996
+ [PropertyName.DeviceLastChargingTotalEvents]: exports.DeviceLastChargingTotalEventsProperty,
6997
+ [PropertyName.DeviceBatteryUsageLastWeek]: exports.DeviceBatteryUsageLastWeekProperty,
6998
+ [PropertyName.DeviceMotionDetected]: exports.DeviceMotionDetectedProperty,
6999
+ [PropertyName.DevicePersonDetected]: exports.DevicePersonDetectedProperty,
7000
+ [PropertyName.DeviceVehicleDetected]: exports.DeviceVehicleDetectedProperty,
7001
+ [PropertyName.DeviceStatusLed]: exports.DeviceStatusLedProperty,
7002
+ [PropertyName.DeviceLight]: exports.DeviceFloodlightLightProperty,
7003
+ [PropertyName.DeviceLightSettingsBrightnessManual]: exports.DeviceFloodlightLightSettingsBrightnessManualProperty,
7004
+ [PropertyName.DeviceLightSettingsEnable]: exports.DeviceFloodlightLightSettingsEnableProperty,
7005
+ [PropertyName.DeviceLightSettingsMotionTriggered]: exports.DeviceFloodlightLightSettingsMotionTriggeredProperty,
7006
+ [PropertyName.DevicePicture]: exports.DevicePictureProperty,
7007
+ [PropertyName.DevicePictureUrl]: exports.DevicePictureUrlProperty,
7008
+ [PropertyName.DeviceMotionDetectionSensitivity]: exports.DeviceMotionDetectionSensitivitySoloProperty,
7009
+ [PropertyName.DeviceMicrophone]: exports.DeviceMicrophoneProperty,
7010
+ [PropertyName.DeviceSpeaker]: exports.DeviceSpeakerProperty,
7011
+ [PropertyName.DeviceSpeakerVolume]: exports.DeviceSpeakerVolumeIndoorFloodDoorbellProperty,
7012
+ [PropertyName.DeviceAudioRecording]: exports.DeviceAudioRecordingStarlight4gLTEProperty,
7013
+ [PropertyName.DeviceMotionDetectionTypeHuman]: exports.DeviceMotionHB3DetectionTypeHumanProperty,
7014
+ [PropertyName.DeviceMotionDetectionTypeVehicle]: exports.DeviceMotionHB3DetectionTypeVehicleProperty,
7015
+ [PropertyName.DeviceMotionDetectionTypeAllOtherMotions]: exports.DeviceMotionHB3DetectionTypeAllOtherMotionsProperty,
7016
+ [PropertyName.DeviceMotionTracking]: exports.DeviceMotionTrackingProperty,
7017
+ [PropertyName.DeviceVideoStreamingQuality]: exports.DeviceVideoStreamingQualityS340Property,
7018
+ [PropertyName.DeviceVideoRecordingQuality]: exports.DeviceVideoRecordingQualityS340Property,
7019
+ [PropertyName.DeviceNotificationType]: exports.DeviceNotificationTypeIndoorFloodlightProperty,
7020
+ [PropertyName.DeviceRotationSpeed]: exports.DeviceRotationSpeedProperty,
7021
+ [PropertyName.DeviceMotionZone]: exports.DeviceMotionZoneProperty,
7022
+ [PropertyName.DeviceSnooze]: exports.DeviceSnoozeProperty,
7023
+ [PropertyName.DeviceSnoozeTime]: exports.DeviceSnoozeTimeProperty,
7024
+ [PropertyName.DeviceSnoozeStartTime]: exports.DeviceSnoozeStartTimeProperty,
7025
+ [PropertyName.DevicePersonName]: exports.DevicePersonNameProperty,
7026
+ [PropertyName.DevicePowerSource]: exports.DevicePowerSourceProperty,
7027
+ [PropertyName.DevicePowerWorkingMode]: exports.DevicePowerWorkingModeProperty,
7028
+ [PropertyName.DeviceChargingStatus]: exports.DeviceChargingStatusProperty,
7029
+ [PropertyName.DeviceRecordingClipLength]: exports.DeviceRecordingClipLengthOutdoorPTProperty,
7030
+ [PropertyName.DeviceRecordingRetriggerInterval]: exports.DeviceRecordingRetriggerIntervalProperty,
7031
+ [PropertyName.DeviceRecordingEndClipMotionStops]: exports.DeviceRecordingEndClipMotionStopsProperty,
7032
+ [PropertyName.DeviceDualCamWatchViewMode]: exports.DeviceDualCamWatchViewModeS340Property,
7033
+ [PropertyName.DeviceRTSPStream]: exports.DeviceRTSPStreamProperty,
7034
+ [PropertyName.DeviceDetectionStatisticsWorkingDays]: exports.DeviceDetectionStatisticsWorkingDaysProperty,
7035
+ [PropertyName.DeviceDetectionStatisticsDetectedEvents]: exports.DeviceDetectionStatisticsDetectedEventsProperty,
7036
+ [PropertyName.DeviceDetectionStatisticsRecordedEvents]: exports.DeviceDetectionStatisticsRecordedEventsProperty,
7037
+ [PropertyName.DeviceContinuousRecording]: exports.DeviceContinuousRecordingProperty,
7038
+ [PropertyName.DeviceContinuousRecordingType]: exports.DeviceContinuousRecordingTypeProperty,
7039
+ [PropertyName.DeviceVideoTypeStoreToNAS]: exports.DeviceVideoTypeStoreToNASProperty,
7040
+ [PropertyName.DeviceImageMirrored]: exports.DeviceImageMirroredProperty,
7041
+ [PropertyName.DeviceAntitheftDetection]: exports.DeviceAntitheftDetectionProperty,
7042
+ [PropertyName.DeviceCellularRSSI]: exports.DeviceCellularRSSIProperty,
7043
+ [PropertyName.DeviceCellularSignalLevel]: exports.DeviceCellularSignalLevelProperty,
7044
+ [PropertyName.DeviceCellularSignal]: exports.DeviceCellularSignalProperty,
7045
+ [PropertyName.DeviceCellularBand]: exports.DeviceCellularBandProperty,
7046
+ [PropertyName.DeviceCellularIMEI]: exports.DeviceCellularIMEIProperty,
7047
+ [PropertyName.DeviceCellularICCID]: exports.DeviceCellularICCIDProperty,
7048
+ },
6905
7049
  [DeviceType.SOLO_CAMERA]: {
6906
7050
  ...exports.GenericDeviceProperties,
6907
7051
  [PropertyName.DeviceEnabled]: exports.DeviceEnabledSoloProperty,
@@ -7188,7 +7332,7 @@ exports.DeviceProperties = {
7188
7332
  [PropertyName.DeviceBattery]: exports.DeviceBatteryProperty,
7189
7333
  [PropertyName.DeviceBatteryTemp]: exports.DeviceBatteryTempProperty,
7190
7334
  [PropertyName.DeviceAutoNightvision]: exports.DeviceAutoNightvisionSoloProperty,
7191
- [PropertyName.DeviceMotionDetection]: exports.DeviceMotionDetectionProperty,
7335
+ [PropertyName.DeviceMotionDetection]: exports.DeviceMotionDetectionIndoorSoloFloodProperty,
7192
7336
  [PropertyName.DeviceWatermark]: exports.DeviceWatermarkProperty,
7193
7337
  [PropertyName.DeviceMotionDetected]: exports.DeviceMotionDetectedProperty,
7194
7338
  [PropertyName.DevicePersonDetected]: exports.DevicePersonDetectedProperty,
@@ -7440,6 +7584,7 @@ exports.DeviceProperties = {
7440
7584
  [PropertyName.DeviceLockEventOrigin]: exports.DeviceLockEventOriginProperty,
7441
7585
  [PropertyName.DevicePersonName]: exports.DevicePersonNameProperty,
7442
7586
  },
7587
+ [DeviceType.LOCK_85V0]: exports.LockT85V0DeviceProperties,
7443
7588
  [DeviceType.LOCK_BLE]: {
7444
7589
  ...exports.GenericDeviceProperties,
7445
7590
  [PropertyName.DeviceState]: exports.DeviceStateLockProperty,
@@ -8060,8 +8205,81 @@ exports.DeviceProperties = {
8060
8205
  [PropertyName.DeviceBattery]: exports.DeviceBatteryProperty,
8061
8206
  [PropertyName.DeviceBatteryLow]: exports.DeviceBatteryLowMotionSensorProperty,
8062
8207
  },
8208
+ [DeviceType.WATER_FREEZE_SENSOR_8920]: {
8209
+ ...exports.GenericDeviceProperties,
8210
+ [PropertyName.DeviceState]: exports.DeviceStateProperty,
8211
+ [PropertyName.DeviceBattery]: exports.DeviceBatteryProperty,
8212
+ [PropertyName.DeviceSnooze]: exports.DeviceSnoozeProperty,
8213
+ [PropertyName.DeviceWifiRSSI]: exports.DeviceWifiRSSIEntrySensorProperty,
8214
+ [PropertyName.DeviceBatteryLow]: exports.DeviceBatteryLowMotionSensorProperty,
8215
+ },
8216
+ [DeviceType.NVR_S4_MAX]: {
8217
+ ...exports.GenericDeviceProperties,
8218
+ },
8219
+ [DeviceType.CAMERA_POE_S4]: {
8220
+ ...exports.GenericDeviceProperties,
8221
+ [PropertyName.DeviceEnabled]: exports.DeviceEnabledSoloProperty,
8222
+ [PropertyName.DeviceAutoNightvision]: exports.DeviceAutoNightvisionProperty,
8223
+ [PropertyName.DeviceNightvision]: exports.DeviceNightvisionProperty,
8224
+ [PropertyName.DeviceWifiRSSI]: exports.DeviceWifiRSSIProperty,
8225
+ [PropertyName.DeviceWifiSignalLevel]: exports.DeviceWifiSignalLevelProperty,
8226
+ [PropertyName.DeviceAntitheftDetection]: exports.DeviceAntitheftDetectionProperty,
8227
+ [PropertyName.DeviceMotionDetection]: exports.DeviceMotionDetectionIndoorSoloFloodProperty,
8228
+ [PropertyName.DeviceWatermark]: exports.DeviceWatermarkProperty,
8229
+ [PropertyName.DeviceState]: exports.DeviceStateProperty,
8230
+ [PropertyName.DeviceMotionDetected]: exports.DeviceMotionDetectedProperty,
8231
+ [PropertyName.DevicePersonDetected]: exports.DevicePersonDetectedProperty,
8232
+ [PropertyName.DeviceVehicleDetected]: exports.DeviceVehicleDetectedProperty,
8233
+ [PropertyName.DeviceStatusLed]: exports.DeviceStatusLedProperty,
8234
+ [PropertyName.DeviceLight]: exports.DeviceFloodlightLightProperty,
8235
+ [PropertyName.DeviceLightSettingsBrightnessManual]: exports.DeviceFloodlightLightSettingsBrightnessManualProperty,
8236
+ [PropertyName.DeviceLightSettingsEnable]: exports.DeviceFloodlightLightSettingsEnableProperty,
8237
+ [PropertyName.DeviceLightSettingsMotionTriggered]: exports.DeviceFloodlightLightSettingsMotionTriggeredProperty,
8238
+ [PropertyName.DeviceRTSPStream]: exports.DeviceRTSPStreamProperty,
8239
+ [PropertyName.DeviceRTSPStreamUrl]: exports.DeviceRTSPStreamUrlProperty,
8240
+ [PropertyName.DevicePicture]: exports.DevicePictureProperty,
8241
+ [PropertyName.DevicePictureUrl]: exports.DevicePictureUrlProperty,
8242
+ [PropertyName.DeviceMotionDetectionSensitivity]: exports.DeviceMotionDetectionSensitivityCamera2Property,
8243
+ [PropertyName.DeviceMotionDetectionType]: exports.DeviceMotionDetectionTypeProperty,
8244
+ [PropertyName.DeviceMicrophone]: exports.DeviceMicrophoneProperty,
8245
+ [PropertyName.DeviceSpeaker]: exports.DeviceSpeakerProperty,
8246
+ [PropertyName.DeviceSpeakerVolume]: exports.DeviceSpeakerVolumeIndoorFloodDoorbellProperty,
8247
+ [PropertyName.DeviceAudioRecording]: exports.DeviceAudioRecordingProperty,
8248
+ [PropertyName.DeviceMotionDetectionTypeHuman]: exports.DeviceMotionHB3DetectionTypeHumanProperty,
8249
+ [PropertyName.DeviceMotionDetectionTypeHumanRecognition]: exports.DeviceMotionHB3DetectionTypeHumanRecognitionProperty,
8250
+ [PropertyName.DeviceMotionDetectionTypePet]: exports.DeviceMotionHB3DetectionTypePetProperty,
8251
+ [PropertyName.DeviceMotionDetectionTypeVehicle]: exports.DeviceMotionHB3DetectionTypeVehicleProperty,
8252
+ [PropertyName.DeviceMotionDetectionTypeAllOtherMotions]: exports.DeviceMotionHB3DetectionTypeAllOtherMotionsProperty,
8253
+ [PropertyName.DeviceVideoStreamingQuality]: exports.DeviceVideoStreamingQualitySoloProperty,
8254
+ [PropertyName.DeviceVideoRecordingQuality]: exports.DeviceVideoRecordingQualityProperty,
8255
+ [PropertyName.DeviceNotificationType]: exports.DeviceNotificationTypeIndoorFloodlightProperty,
8256
+ [PropertyName.DeviceNotificationPerson]: exports.DeviceNotificationPersonS350Property,
8257
+ [PropertyName.DeviceNotificationPet]: exports.DeviceNotificationPetS350Property,
8258
+ [PropertyName.DeviceNotificationAllOtherMotion]: exports.DeviceNotificationAllOtherMotionS350Property,
8259
+ [PropertyName.DeviceNotificationAllSound]: exports.DeviceNotificationAllSoundS350Property,
8260
+ [PropertyName.DeviceNotificationCrying]: exports.DeviceNotificationCryingS350Property,
8261
+ [PropertyName.DeviceNotificationVehicle]: exports.DeviceNotificationVehicleProperty,
8262
+ [PropertyName.DeviceImageMirrored]: exports.DeviceImageMirroredProperty,
8263
+ [PropertyName.DeviceSnooze]: exports.DeviceSnoozeProperty,
8264
+ [PropertyName.DeviceSnoozeTime]: exports.DeviceSnoozeTimeProperty,
8265
+ [PropertyName.DeviceSnoozeStartTime]: exports.DeviceSnoozeStartTimeProperty,
8266
+ [PropertyName.DevicePowerSource]: exports.DevicePowerSourceProperty,
8267
+ [PropertyName.DevicePowerWorkingMode]: exports.DevicePowerWorkingModeProperty,
8268
+ [PropertyName.DeviceRecordingClipLength]: exports.DeviceRecordingClipLengthOutdoorPTProperty,
8269
+ [PropertyName.DeviceRecordingRetriggerInterval]: exports.DeviceRecordingRetriggerIntervalProperty,
8270
+ [PropertyName.DeviceRecordingEndClipMotionStops]: exports.DeviceRecordingEndClipMotionStopsProperty,
8271
+ [PropertyName.DeviceVideoWDR]: exports.DeviceWDRProperty,
8272
+ [PropertyName.DeviceDualCamWatchViewMode]: exports.DeviceDualCamWatchViewModeProperty,
8273
+ [PropertyName.DeviceContinuousRecording]: exports.DeviceContinuousRecordingProperty,
8274
+ [PropertyName.DeviceContinuousRecordingType]: exports.DeviceContinuousRecordingTypeProperty,
8275
+ [PropertyName.DeviceVideoTypeStoreToNAS]: exports.DeviceVideoTypeStoreToNASProperty,
8276
+ [PropertyName.DeviceDetectionStatisticsWorkingDays]: exports.DeviceDetectionStatisticsWorkingDaysProperty,
8277
+ [PropertyName.DeviceDetectionStatisticsDetectedEvents]: exports.DeviceDetectionStatisticsDetectedEventsProperty,
8278
+ [PropertyName.DeviceDetectionStatisticsRecordedEvents]: exports.DeviceDetectionStatisticsRecordedEventsProperty,
8279
+ },
8063
8280
  };
8064
8281
  exports.DeviceProperties[DeviceType.INDOOR_PT_CAMERA_C220_V2] = exports.DeviceProperties[DeviceType.INDOOR_PT_CAMERA_C220];
8282
+ exports.DeviceProperties[DeviceType.INDOOR_PT_CAMERA_C220_V3] = exports.DeviceProperties[DeviceType.INDOOR_PT_CAMERA_C220];
8065
8283
  exports.StationNameProperty = {
8066
8284
  key: "station_name",
8067
8285
  name: PropertyName.Name,
@@ -8658,6 +8876,32 @@ exports.StationProperties = {
8658
8876
  [PropertyName.StationCrossTrackingCameraList]: exports.StationCrossTrackingCameraListProperty,
8659
8877
  [PropertyName.StationCrossTrackingGroupList]: exports.StationCrossTrackingGroupListProperty,
8660
8878
  },
8879
+ [DeviceType.NVR_S4_MAX]: {
8880
+ ...exports.BaseStationProperties,
8881
+ [PropertyName.StationLANIpAddress]: exports.StationLanIpAddressProperty,
8882
+ [PropertyName.StationMacAddress]: exports.StationMacAddressProperty,
8883
+ [PropertyName.StationGuardMode]: exports.StationGuardModeProperty,
8884
+ [PropertyName.StationCurrentMode]: exports.StationCurrentModeProperty,
8885
+ [PropertyName.StationTimeFormat]: exports.StationTimeFormatProperty,
8886
+ [PropertyName.StationTimeZone]: exports.StationTimeZoneProperty,
8887
+ [PropertyName.StationAlarmVolume]: exports.StationAlarmVolumeProperty,
8888
+ [PropertyName.StationAlarmTone]: exports.StationAlarmToneProperty,
8889
+ [PropertyName.StationAutoEndAlarm]: exports.StationAutoEndAlarmProperty,
8890
+ [PropertyName.StationNotificationSwitchModeSchedule]: exports.StationNotificationSwitchModeScheduleProperty,
8891
+ [PropertyName.StationNotificationSwitchModeGeofence]: exports.StationNotificationSwitchModeGeofenceProperty,
8892
+ [PropertyName.StationNotificationSwitchModeApp]: exports.StationNotificationSwitchModeAppProperty,
8893
+ [PropertyName.StationNotificationSwitchModeKeypad]: exports.StationNotificationSwitchModeKeypadProperty,
8894
+ [PropertyName.StationNotificationStartAlarmDelay]: exports.StationNotificationStartAlarmDelayProperty,
8895
+ [PropertyName.StationSdStatus]: exports.StationSdStatusProperty,
8896
+ [PropertyName.StationHomeSecuritySettings]: exports.StationHomeSecuritySettings,
8897
+ [PropertyName.StationAwaySecuritySettings]: exports.StationAwaySecuritySettings,
8898
+ [PropertyName.StationCustom1SecuritySettings]: exports.StationCustom1SecuritySettings,
8899
+ [PropertyName.StationCustom2SecuritySettings]: exports.StationCustom2SecuritySettings,
8900
+ [PropertyName.StationCustom3SecuritySettings]: exports.StationCustom3SecuritySettings,
8901
+ [PropertyName.StationOffSecuritySettings]: exports.StationOffSecuritySettings,
8902
+ [PropertyName.StationAlarm]: exports.StationAlarmProperty,
8903
+ [PropertyName.StationAlarmType]: exports.StationAlarmTypeProperty,
8904
+ },
8661
8905
  [DeviceType.INDOOR_CAMERA]: {
8662
8906
  ...exports.BaseStationProperties,
8663
8907
  [PropertyName.StationLANIpAddress]: exports.StationLanIpAddressStandaloneProperty,
@@ -8826,6 +9070,21 @@ exports.StationProperties = {
8826
9070
  [PropertyName.StationNotificationSwitchModeSchedule]: exports.StationNotificationSwitchModeScheduleProperty,
8827
9071
  [PropertyName.StationNotificationSwitchModeApp]: exports.StationNotificationSwitchModeAppProperty,
8828
9072
  },
9073
+ [DeviceType.SOLOCAM_E42]: {
9074
+ ...exports.BaseStationProperties,
9075
+ [PropertyName.StationLANIpAddress]: exports.StationLanIpAddressStandaloneProperty,
9076
+ [PropertyName.StationMacAddress]: exports.StationMacAddressProperty,
9077
+ [PropertyName.StationGuardMode]: exports.StationGuardModeProperty,
9078
+ [PropertyName.StationCurrentMode]: exports.StationCurrentModeProperty,
9079
+ [PropertyName.StationTimeFormat]: exports.StationTimeFormatProperty,
9080
+ [PropertyName.StationAlarm]: exports.StationAlarmProperty,
9081
+ [PropertyName.StationAlarmType]: exports.StationAlarmTypeProperty,
9082
+ [PropertyName.StationSdStatus]: exports.StationSdStatusProperty,
9083
+ [PropertyName.StationSdCapacity]: exports.StationSdCapacityProperty,
9084
+ [PropertyName.StationSdCapacityAvailable]: exports.StationSdAvailableCapacityProperty,
9085
+ [PropertyName.StationNotificationSwitchModeSchedule]: exports.StationNotificationSwitchModeScheduleProperty,
9086
+ [PropertyName.StationNotificationSwitchModeApp]: exports.StationNotificationSwitchModeAppProperty,
9087
+ },
8829
9088
  [DeviceType.DOORBELL]: {
8830
9089
  ...exports.BaseStationProperties,
8831
9090
  [PropertyName.StationLANIpAddress]: exports.StationLanIpAddressStandaloneProperty,
@@ -8881,6 +9140,17 @@ exports.StationProperties = {
8881
9140
  //[PropertyName.StationNotificationSwitchModeSchedule]: StationNotificationSwitchModeScheduleProperty, //TODO: Implement correctly
8882
9141
  //[PropertyName.StationNotificationSwitchModeApp]: StationNotificationSwitchModeAppProperty, //TODO: Implement correctly
8883
9142
  },
9143
+ [DeviceType.CAMERA_4G_S330]: {
9144
+ ...exports.BaseStationProperties,
9145
+ [PropertyName.StationLANIpAddress]: exports.StationLanIpAddressStandaloneProperty,
9146
+ [PropertyName.StationMacAddress]: exports.StationMacAddressProperty,
9147
+ [PropertyName.StationGuardMode]: exports.StationGuardModeProperty,
9148
+ [PropertyName.StationCurrentMode]: exports.StationCurrentModeProperty,
9149
+ [PropertyName.StationTimeFormat]: exports.StationTimeFormatProperty,
9150
+ [PropertyName.StationTimeZone]: exports.StationTimeZoneProperty,
9151
+ [PropertyName.StationAlarm]: exports.StationAlarmProperty,
9152
+ [PropertyName.StationAlarmType]: exports.StationAlarmTypeProperty,
9153
+ },
8884
9154
  [DeviceType.SOLO_CAMERA]: {
8885
9155
  ...exports.BaseStationProperties,
8886
9156
  [PropertyName.StationLANIpAddress]: exports.StationLanIpAddressStandaloneProperty,
@@ -9185,6 +9455,7 @@ exports.StationProperties = {
9185
9455
  },
9186
9456
  };
9187
9457
  exports.StationProperties[DeviceType.INDOOR_PT_CAMERA_C220_V2] = exports.StationProperties[DeviceType.INDOOR_PT_CAMERA_C220];
9458
+ exports.StationProperties[DeviceType.INDOOR_PT_CAMERA_C220_V3] = exports.StationProperties[DeviceType.INDOOR_PT_CAMERA_C220];
9188
9459
  var CommandName;
9189
9460
  (function (CommandName) {
9190
9461
  CommandName["DeviceStartLivestream"] = "deviceStartLivestream";
@@ -9523,6 +9794,21 @@ exports.DeviceCommands = {
9523
9794
  CommandName.DeviceSavePresetPosition,
9524
9795
  CommandName.DeviceDeletePresetPosition,
9525
9796
  ],
9797
+ [DeviceType.INDOOR_PT_CAMERA_E30]: [
9798
+ CommandName.DeviceStartLivestream,
9799
+ CommandName.DeviceStopLivestream,
9800
+ CommandName.DeviceTriggerAlarmSound,
9801
+ CommandName.DevicePanAndTilt,
9802
+ CommandName.DeviceStartDownload,
9803
+ CommandName.DeviceCancelDownload,
9804
+ CommandName.DeviceCalibrate,
9805
+ CommandName.DeviceStartTalkback,
9806
+ CommandName.DeviceStopTalkback,
9807
+ CommandName.DeviceSnooze,
9808
+ CommandName.DevicePresetPosition,
9809
+ CommandName.DeviceSavePresetPosition,
9810
+ CommandName.DeviceDeletePresetPosition,
9811
+ ],
9526
9812
  [DeviceType.INDOOR_PT_CAMERA_C210]: [
9527
9813
  CommandName.DeviceStartLivestream,
9528
9814
  CommandName.DeviceStopLivestream,
@@ -9533,6 +9819,9 @@ exports.DeviceCommands = {
9533
9819
  CommandName.DeviceStartTalkback,
9534
9820
  CommandName.DeviceStopTalkback,
9535
9821
  CommandName.DeviceSnooze,
9822
+ CommandName.DevicePresetPosition,
9823
+ CommandName.DeviceSavePresetPosition,
9824
+ CommandName.DeviceDeletePresetPosition,
9536
9825
  ],
9537
9826
  [DeviceType.INDOOR_PT_CAMERA_C220]: [
9538
9827
  CommandName.DeviceStartLivestream,
@@ -9563,6 +9852,21 @@ exports.DeviceCommands = {
9563
9852
  CommandName.DeviceSavePresetPosition,
9564
9853
  CommandName.DeviceDeletePresetPosition,
9565
9854
  ],
9855
+ [DeviceType.SOLOCAM_E42]: [
9856
+ CommandName.DeviceStartLivestream,
9857
+ CommandName.DeviceStopLivestream,
9858
+ CommandName.DeviceTriggerAlarmSound,
9859
+ CommandName.DevicePanAndTilt,
9860
+ CommandName.DeviceStartDownload,
9861
+ CommandName.DeviceCancelDownload,
9862
+ CommandName.DeviceCalibrate,
9863
+ CommandName.DeviceStartTalkback,
9864
+ CommandName.DeviceStopTalkback,
9865
+ CommandName.DeviceSnooze,
9866
+ CommandName.DevicePresetPosition,
9867
+ CommandName.DeviceSavePresetPosition,
9868
+ CommandName.DeviceDeletePresetPosition,
9869
+ ],
9566
9870
  [DeviceType.CAMERA_FG]: [
9567
9871
  CommandName.DeviceStartLivestream,
9568
9872
  CommandName.DeviceStopLivestream,
@@ -9573,6 +9877,21 @@ exports.DeviceCommands = {
9573
9877
  CommandName.DeviceStopTalkback,
9574
9878
  CommandName.DeviceSnooze,
9575
9879
  ],
9880
+ [DeviceType.CAMERA_4G_S330]: [
9881
+ CommandName.DeviceStartLivestream,
9882
+ CommandName.DeviceStopLivestream,
9883
+ CommandName.DeviceTriggerAlarmSound,
9884
+ CommandName.DevicePanAndTilt,
9885
+ CommandName.DeviceStartDownload,
9886
+ CommandName.DeviceCancelDownload,
9887
+ CommandName.DeviceCalibrate,
9888
+ CommandName.DeviceStartTalkback,
9889
+ CommandName.DeviceStopTalkback,
9890
+ CommandName.DeviceSnooze,
9891
+ CommandName.DevicePresetPosition,
9892
+ CommandName.DeviceSavePresetPosition,
9893
+ CommandName.DeviceDeletePresetPosition,
9894
+ ],
9576
9895
  [DeviceType.SOLO_CAMERA]: [
9577
9896
  CommandName.DeviceStartLivestream,
9578
9897
  CommandName.DeviceStopLivestream,
@@ -9856,6 +10175,22 @@ exports.DeviceCommands = {
9856
10175
  CommandName.DeviceUpdateUserSchedule,
9857
10176
  CommandName.DeviceUpdateUsername,
9858
10177
  ],
10178
+ [DeviceType.LOCK_85V0]: [
10179
+ CommandName.DeviceStartLivestream,
10180
+ CommandName.DeviceStopLivestream,
10181
+ CommandName.DeviceQuickResponse,
10182
+ CommandName.DeviceStartDownload,
10183
+ CommandName.DeviceCancelDownload,
10184
+ CommandName.DeviceStartTalkback,
10185
+ CommandName.DeviceStopTalkback,
10186
+ CommandName.DeviceSnooze,
10187
+ CommandName.DeviceLockCalibration,
10188
+ CommandName.DeviceAddUser,
10189
+ CommandName.DeviceDeleteUser,
10190
+ CommandName.DeviceUpdateUserPasscode,
10191
+ CommandName.DeviceUpdateUserSchedule,
10192
+ CommandName.DeviceUpdateUsername,
10193
+ ],
9859
10194
  [DeviceType.MOTION_SENSOR]: [],
9860
10195
  [DeviceType.SENSOR]: [],
9861
10196
  [DeviceType.SMART_SAFE_7400]: [CommandName.DeviceUnlock, CommandName.DeviceVerifyPIN],
@@ -9907,8 +10242,21 @@ exports.DeviceCommands = {
9907
10242
  CommandName.StationTriggerAlarmSound,
9908
10243
  CommandName.DeviceTriggerAlarmSound,
9909
10244
  ],
10245
+ [DeviceType.NVR_S4_MAX]: [],
10246
+ [DeviceType.CAMERA_POE_S4]: [
10247
+ CommandName.DeviceStartLivestream,
10248
+ CommandName.DeviceStopLivestream,
10249
+ CommandName.DeviceTriggerAlarmSound,
10250
+ CommandName.DeviceStartDownload,
10251
+ CommandName.DeviceCancelDownload,
10252
+ CommandName.DeviceStartTalkback,
10253
+ CommandName.DeviceStopTalkback,
10254
+ CommandName.DeviceSnooze,
10255
+ CommandName.DevicePanAndTilt,
10256
+ ],
9910
10257
  };
9911
10258
  exports.DeviceCommands[DeviceType.INDOOR_PT_CAMERA_C220_V2] = exports.DeviceCommands[DeviceType.INDOOR_PT_CAMERA_C220];
10259
+ exports.DeviceCommands[DeviceType.INDOOR_PT_CAMERA_C220_V3] = exports.DeviceCommands[DeviceType.INDOOR_PT_CAMERA_C220];
9912
10260
  exports.StationCommands = {
9913
10261
  [DeviceType.STATION]: [
9914
10262
  CommandName.StationReboot,
@@ -9941,6 +10289,16 @@ exports.StationCommands = {
9941
10289
  CommandName.StationDatabaseCountByDate,
9942
10290
  CommandName.StationDatabaseDelete,
9943
10291
  ],
10292
+ [DeviceType.NVR_S4_MAX]: [
10293
+ CommandName.StationReboot,
10294
+ CommandName.StationTriggerAlarmSound,
10295
+ CommandName.StationDownloadImage,
10296
+ CommandName.StationDatabaseQueryLatestInfo,
10297
+ CommandName.StationDatabaseQueryByDate,
10298
+ CommandName.StationDatabaseQueryLocal,
10299
+ CommandName.StationDatabaseCountByDate,
10300
+ CommandName.StationDatabaseDelete,
10301
+ ],
9944
10302
  [DeviceType.MINIBASE_CHIME]: [
9945
10303
  CommandName.StationReboot,
9946
10304
  CommandName.StationTriggerAlarmSound,
@@ -10042,6 +10400,16 @@ exports.StationCommands = {
10042
10400
  CommandName.StationDatabaseCountByDate,
10043
10401
  CommandName.StationDatabaseDelete,
10044
10402
  ],
10403
+ [DeviceType.INDOOR_PT_CAMERA_E30]: [
10404
+ CommandName.StationReboot,
10405
+ CommandName.StationTriggerAlarmSound,
10406
+ CommandName.StationDownloadImage,
10407
+ CommandName.StationDatabaseQueryLatestInfo,
10408
+ CommandName.StationDatabaseQueryByDate,
10409
+ CommandName.StationDatabaseQueryLocal,
10410
+ CommandName.StationDatabaseCountByDate,
10411
+ CommandName.StationDatabaseDelete,
10412
+ ],
10045
10413
  [DeviceType.INDOOR_PT_CAMERA_C210]: [
10046
10414
  CommandName.StationReboot,
10047
10415
  CommandName.StationTriggerAlarmSound,
@@ -10082,6 +10450,16 @@ exports.StationCommands = {
10082
10450
  CommandName.StationDatabaseCountByDate,
10083
10451
  CommandName.StationDatabaseDelete,
10084
10452
  ],
10453
+ [DeviceType.SOLOCAM_E42]: [
10454
+ CommandName.StationReboot,
10455
+ CommandName.StationTriggerAlarmSound,
10456
+ CommandName.StationDownloadImage,
10457
+ CommandName.StationDatabaseQueryLatestInfo,
10458
+ CommandName.StationDatabaseQueryByDate,
10459
+ CommandName.StationDatabaseQueryLocal,
10460
+ CommandName.StationDatabaseCountByDate,
10461
+ CommandName.StationDatabaseDelete,
10462
+ ],
10085
10463
  [DeviceType.DOORBELL]: [
10086
10464
  CommandName.StationReboot,
10087
10465
  CommandName.StationDownloadImage,
@@ -10263,6 +10641,7 @@ exports.StationCommands = {
10263
10641
  CommandName.StationDatabaseDelete,
10264
10642
  ],
10265
10643
  [DeviceType.CAMERA_FG]: [CommandName.StationReboot, CommandName.StationTriggerAlarmSound],
10644
+ [DeviceType.CAMERA_4G_S330]: [CommandName.StationReboot, CommandName.StationTriggerAlarmSound],
10266
10645
  [DeviceType.WALL_LIGHT_CAM]: [
10267
10646
  CommandName.StationReboot,
10268
10647
  CommandName.StationTriggerAlarmSound,
@@ -10330,4 +10709,5 @@ exports.StationCommands = {
10330
10709
  ],
10331
10710
  };
10332
10711
  exports.StationCommands[DeviceType.INDOOR_PT_CAMERA_C220_V2] = exports.StationCommands[DeviceType.INDOOR_PT_CAMERA_C220];
10712
+ exports.StationCommands[DeviceType.INDOOR_PT_CAMERA_C220_V3] = exports.StationCommands[DeviceType.INDOOR_PT_CAMERA_C220];
10333
10713
  //# sourceMappingURL=types.js.map