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.
- package/build/http/device.d.ts +1 -0
- package/build/http/device.js +5 -0
- package/build/http/device.js.map +1 -1
- package/build/http/station.js +2 -3
- package/build/http/station.js.map +1 -1
- package/build/http/types.d.ts +1 -0
- package/build/http/types.js +5 -0
- package/build/http/types.js.map +1 -1
- package/coverage/clover.xml +3498 -3492
- package/coverage/coverage-final.json +4 -4
- package/coverage/lcov-report/index.html +15 -15
- package/coverage/lcov.info +5993 -5981
- 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";
|
|
@@ -10099,6 +10102,7 @@ exports.DeviceCommands = {
|
|
|
10099
10102
|
],
|
|
10100
10103
|
};
|
|
10101
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];
|
|
10102
10106
|
exports.StationCommands = {
|
|
10103
10107
|
[DeviceType.STATION]: [
|
|
10104
10108
|
CommandName.StationReboot,
|
|
@@ -10531,4 +10535,5 @@ exports.StationCommands = {
|
|
|
10531
10535
|
],
|
|
10532
10536
|
};
|
|
10533
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];
|
|
10534
10539
|
//# sourceMappingURL=types.js.map
|