eufy-security-client 3.7.2-dev.1 → 3.7.2-dev.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.
- package/build/http/types.d.ts +1 -0
- package/build/http/types.js +8 -0
- package/build/http/types.js.map +1 -1
- package/coverage/clover.xml +639 -634
- package/coverage/coverage-final.json +2 -2
- package/coverage/lcov-report/index.html +10 -10
- package/coverage/lcov.info +843 -838
- package/package.json +5 -1
package/build/http/types.d.ts
CHANGED
|
@@ -91,6 +91,7 @@ export declare enum DeviceType {
|
|
|
91
91
|
INDOOR_PT_CAMERA_C220 = 10008,// T8W11C
|
|
92
92
|
INDOOR_PT_CAMERA_C210 = 10009,// T8419 / T8W11P?
|
|
93
93
|
INDOOR_PT_CAMERA_C220_V2 = 10010,// T8W11C (Type 10010)
|
|
94
|
+
INDOOR_PT_CAMERA_C220_V3 = 10011,// T8419N
|
|
94
95
|
CAMERA_C35 = 10035
|
|
95
96
|
}
|
|
96
97
|
export declare enum ParamType {
|
package/build/http/types.js
CHANGED
|
@@ -105,6 +105,7 @@ var DeviceType;
|
|
|
105
105
|
DeviceType[DeviceType["INDOOR_PT_CAMERA_C220"] = 10008] = "INDOOR_PT_CAMERA_C220";
|
|
106
106
|
DeviceType[DeviceType["INDOOR_PT_CAMERA_C210"] = 10009] = "INDOOR_PT_CAMERA_C210";
|
|
107
107
|
DeviceType[DeviceType["INDOOR_PT_CAMERA_C220_V2"] = 10010] = "INDOOR_PT_CAMERA_C220_V2";
|
|
108
|
+
DeviceType[DeviceType["INDOOR_PT_CAMERA_C220_V3"] = 10011] = "INDOOR_PT_CAMERA_C220_V3";
|
|
108
109
|
DeviceType[DeviceType["CAMERA_C35"] = 10035] = "CAMERA_C35";
|
|
109
110
|
})(DeviceType || (exports.DeviceType = DeviceType = {}));
|
|
110
111
|
var ParamType;
|
|
@@ -8193,6 +8194,7 @@ exports.DeviceProperties = {
|
|
|
8193
8194
|
},
|
|
8194
8195
|
};
|
|
8195
8196
|
exports.DeviceProperties[DeviceType.INDOOR_PT_CAMERA_C220_V2] = exports.DeviceProperties[DeviceType.INDOOR_PT_CAMERA_C220];
|
|
8197
|
+
exports.DeviceProperties[DeviceType.INDOOR_PT_CAMERA_C220_V3] = exports.DeviceProperties[DeviceType.INDOOR_PT_CAMERA_C220];
|
|
8196
8198
|
exports.StationNameProperty = {
|
|
8197
8199
|
key: "station_name",
|
|
8198
8200
|
name: PropertyName.Name,
|
|
@@ -9342,6 +9344,7 @@ exports.StationProperties = {
|
|
|
9342
9344
|
},
|
|
9343
9345
|
};
|
|
9344
9346
|
exports.StationProperties[DeviceType.INDOOR_PT_CAMERA_C220_V2] = exports.StationProperties[DeviceType.INDOOR_PT_CAMERA_C220];
|
|
9347
|
+
exports.StationProperties[DeviceType.INDOOR_PT_CAMERA_C220_V3] = exports.StationProperties[DeviceType.INDOOR_PT_CAMERA_C220];
|
|
9345
9348
|
var CommandName;
|
|
9346
9349
|
(function (CommandName) {
|
|
9347
9350
|
CommandName["DeviceStartLivestream"] = "deviceStartLivestream";
|
|
@@ -9690,6 +9693,9 @@ exports.DeviceCommands = {
|
|
|
9690
9693
|
CommandName.DeviceStartTalkback,
|
|
9691
9694
|
CommandName.DeviceStopTalkback,
|
|
9692
9695
|
CommandName.DeviceSnooze,
|
|
9696
|
+
CommandName.DevicePresetPosition,
|
|
9697
|
+
CommandName.DeviceSavePresetPosition,
|
|
9698
|
+
CommandName.DeviceDeletePresetPosition,
|
|
9693
9699
|
],
|
|
9694
9700
|
[DeviceType.INDOOR_PT_CAMERA_C220]: [
|
|
9695
9701
|
CommandName.DeviceStartLivestream,
|
|
@@ -10096,6 +10102,7 @@ exports.DeviceCommands = {
|
|
|
10096
10102
|
],
|
|
10097
10103
|
};
|
|
10098
10104
|
exports.DeviceCommands[DeviceType.INDOOR_PT_CAMERA_C220_V2] = exports.DeviceCommands[DeviceType.INDOOR_PT_CAMERA_C220];
|
|
10105
|
+
exports.DeviceCommands[DeviceType.INDOOR_PT_CAMERA_C220_V3] = exports.DeviceCommands[DeviceType.INDOOR_PT_CAMERA_C220];
|
|
10099
10106
|
exports.StationCommands = {
|
|
10100
10107
|
[DeviceType.STATION]: [
|
|
10101
10108
|
CommandName.StationReboot,
|
|
@@ -10528,4 +10535,5 @@ exports.StationCommands = {
|
|
|
10528
10535
|
],
|
|
10529
10536
|
};
|
|
10530
10537
|
exports.StationCommands[DeviceType.INDOOR_PT_CAMERA_C220_V2] = exports.StationCommands[DeviceType.INDOOR_PT_CAMERA_C220];
|
|
10538
|
+
exports.StationCommands[DeviceType.INDOOR_PT_CAMERA_C220_V3] = exports.StationCommands[DeviceType.INDOOR_PT_CAMERA_C220];
|
|
10531
10539
|
//# sourceMappingURL=types.js.map
|