eufy-security-client 3.7.1 → 3.7.2-dev.2
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/README.md +4 -0
- package/build/eufysecurity.js +7 -3
- package/build/eufysecurity.js.map +1 -1
- package/build/http/api.d.ts +1 -1
- package/build/http/api.js +4 -4
- package/build/http/api.js.map +1 -1
- package/build/http/device.d.ts +13 -0
- package/build/http/device.js +96 -9
- package/build/http/device.js.map +1 -1
- package/build/http/models.d.ts +0 -1
- package/build/http/parameter.js +1 -1
- package/build/http/parameter.js.map +1 -1
- package/build/http/station.js +94 -25
- package/build/http/station.js.map +1 -1
- package/build/http/types.d.ts +10 -0
- package/build/http/types.js +548 -2
- package/build/http/types.js.map +1 -1
- package/build/http/utils.d.ts +2 -2
- package/build/http/utils.js +5 -5
- package/build/http/utils.js.map +1 -1
- package/build/p2p/session.js +35 -75
- package/build/p2p/session.js.map +1 -1
- package/build/p2p/utils.d.ts +0 -10
- package/build/p2p/utils.js +3 -63
- package/build/p2p/utils.js.map +1 -1
- package/build/push/service.js +9 -1
- package/build/push/service.js.map +1 -1
- package/build/push/types.d.ts +3 -1
- package/build/push/types.js +2 -0
- package/build/push/types.js.map +1 -1
- package/coverage/clover.xml +13119 -10508
- package/coverage/coverage-final.json +31 -21
- package/coverage/lcov-report/index.html +65 -50
- package/coverage/lcov.info +25586 -20511
- package/package.json +3 -3
- package/.idea/eufy-security-client.iml +0 -12
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -7
- package/a.ts +0 -61
- package/bin/act +0 -0
- package/coverage/lcov-report/error.ts.html +0 -871
- package/coverage/lcov-report/logging.ts.html +0 -598
- package/dont-care.js +0 -101
package/build/http/types.d.ts
CHANGED
|
@@ -53,19 +53,24 @@ export declare enum DeviceType {
|
|
|
53
53
|
SOLO_CAMERA_C210 = 64,
|
|
54
54
|
FLOODLIGHT_CAMERA_8426 = 87,//E30
|
|
55
55
|
SOLO_CAMERA_E30 = 88,
|
|
56
|
+
CAMERA_S4 = 89,//T8172
|
|
56
57
|
SMART_DROP = 90,
|
|
57
58
|
BATTERY_DOORBELL_PLUS = 91,
|
|
58
59
|
DOORBELL_SOLO = 93,
|
|
59
60
|
BATTERY_DOORBELL_PLUS_E340 = 94,
|
|
60
61
|
BATTERY_DOORBELL_C30 = 95,
|
|
61
62
|
BATTERY_DOORBELL_C31 = 96,
|
|
63
|
+
SOLOCAM_E42 = 98,//T8173
|
|
62
64
|
INDOOR_COST_DOWN_CAMERA = 100,
|
|
63
65
|
CAMERA_GUN = 101,
|
|
64
66
|
CAMERA_SNAIL = 102,
|
|
65
67
|
INDOOR_PT_CAMERA_S350 = 104,
|
|
66
68
|
INDOOR_PT_CAMERA_E30 = 105,
|
|
67
69
|
CAMERA_FG = 110,//T8150
|
|
70
|
+
CAMERA_4G_S330 = 111,//T86P2
|
|
71
|
+
SIREN_SENSOR_E20 = 123,
|
|
68
72
|
ENTRY_SENSOR_E20 = 126,
|
|
73
|
+
PIR_SENSOR_E20 = 127,
|
|
69
74
|
CAMERA_GARAGE_T8453_COMMON = 131,
|
|
70
75
|
CAMERA_GARAGE_T8452 = 132,
|
|
71
76
|
CAMERA_GARAGE_T8453 = 133,
|
|
@@ -78,6 +83,10 @@ export declare enum DeviceType {
|
|
|
78
83
|
SMART_TRACK_CARD = 159,//T87B2
|
|
79
84
|
LOCK_8502 = 180,
|
|
80
85
|
LOCK_8506 = 184,
|
|
86
|
+
LOCK_8531 = 189,
|
|
87
|
+
LOCK_85D0 = 202,
|
|
88
|
+
LOCK_85L0 = 201,
|
|
89
|
+
LOCK_85V0 = 203,
|
|
81
90
|
WALL_LIGHT_CAM_81A0 = 10005,
|
|
82
91
|
INDOOR_PT_CAMERA_C220 = 10008,// T8W11C
|
|
83
92
|
INDOOR_PT_CAMERA_C210 = 10009,// T8419 / T8W11P?
|
|
@@ -1264,6 +1273,7 @@ export declare const FloodlightT8420XDeviceProperties: IndexedProperty;
|
|
|
1264
1273
|
export declare const WiredDoorbellT8200XDeviceProperties: IndexedProperty;
|
|
1265
1274
|
export declare const LockT8510PDeviceProperties: IndexedProperty;
|
|
1266
1275
|
export declare const LockT8520PDeviceProperties: IndexedProperty;
|
|
1276
|
+
export declare const LockT85V0DeviceProperties: IndexedProperty;
|
|
1267
1277
|
export declare const DeviceProperties: Properties;
|
|
1268
1278
|
export declare const StationNameProperty: PropertyMetadataString;
|
|
1269
1279
|
export declare const StationModelProperty: PropertyMetadataString;
|