aioamazondevices 3.5.1__tar.gz → 3.5.2__tar.gz
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.
- {aioamazondevices-3.5.1 → aioamazondevices-3.5.2}/PKG-INFO +1 -1
- {aioamazondevices-3.5.1 → aioamazondevices-3.5.2}/pyproject.toml +1 -1
- {aioamazondevices-3.5.1 → aioamazondevices-3.5.2}/src/aioamazondevices/__init__.py +1 -1
- {aioamazondevices-3.5.1 → aioamazondevices-3.5.2}/src/aioamazondevices/const.py +36 -2
- {aioamazondevices-3.5.1 → aioamazondevices-3.5.2}/LICENSE +0 -0
- {aioamazondevices-3.5.1 → aioamazondevices-3.5.2}/README.md +0 -0
- {aioamazondevices-3.5.1 → aioamazondevices-3.5.2}/src/aioamazondevices/api.py +0 -0
- {aioamazondevices-3.5.1 → aioamazondevices-3.5.2}/src/aioamazondevices/exceptions.py +0 -0
- {aioamazondevices-3.5.1 → aioamazondevices-3.5.2}/src/aioamazondevices/py.typed +0 -0
- {aioamazondevices-3.5.1 → aioamazondevices-3.5.2}/src/aioamazondevices/sounds.py +0 -0
- {aioamazondevices-3.5.1 → aioamazondevices-3.5.2}/src/aioamazondevices/utils.py +0 -0
@@ -149,6 +149,7 @@ DEVICE_TO_IGNORE: list[str] = [
|
|
149
149
|
AMAZON_DEVICE_TYPE, # Alexa App for iOS
|
150
150
|
"A2TF17PFR55MTB", # Alexa App for Android
|
151
151
|
"A1RTAM01W29CUP", # Alexa App for PC
|
152
|
+
"A18BI6KPKDOEI4", # ecobee4 Smart Thermostat with Built-in Alexa - issue #199
|
152
153
|
]
|
153
154
|
|
154
155
|
DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
@@ -172,6 +173,10 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
172
173
|
"model": "Echo Plus",
|
173
174
|
"hw_version": "Gen2",
|
174
175
|
},
|
176
|
+
"A1C66CX2XD756O": {
|
177
|
+
"model": "Fire Tablet HD 8",
|
178
|
+
"hw_version": "Gen8",
|
179
|
+
},
|
175
180
|
"A1EIANJ7PNB0Q7": {
|
176
181
|
"model": "Echo Show 15",
|
177
182
|
"hw_version": "Gen1",
|
@@ -184,12 +189,16 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
184
189
|
"model": "Fire TV Stick 4K",
|
185
190
|
"hw_version": "Gen2",
|
186
191
|
},
|
192
|
+
"A1Q7QCGNMXAKYW": {
|
193
|
+
"model": "Fire Tablet 7",
|
194
|
+
"hw_version": "Gen9",
|
195
|
+
},
|
187
196
|
"A1RABVCI4QCIKC": {
|
188
197
|
"model": "Echo Dot",
|
189
198
|
"hw_version": "Gen3",
|
190
199
|
},
|
191
200
|
"A1TD5Z1R8IWBHA ": {
|
192
|
-
"model": "Fire HD 8",
|
201
|
+
"model": "Fire Tablet HD 8",
|
193
202
|
"hw_version": "Gen12",
|
194
203
|
},
|
195
204
|
"A1VGB7MHSIEYFK": {
|
@@ -250,9 +259,13 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
250
259
|
"hw_version": "Gen5",
|
251
260
|
},
|
252
261
|
"A2N49KXGVA18AR": {
|
253
|
-
"model": "Fire HD 10 Plus",
|
262
|
+
"model": "Fire Tablet HD 10 Plus",
|
254
263
|
"hw_version": "Gen11",
|
255
264
|
},
|
265
|
+
"A2RU4B77X9R9NZ": {
|
266
|
+
"model": "Echo Link Amp",
|
267
|
+
"hw_version": None,
|
268
|
+
},
|
256
269
|
"A2U21SRK4QGSE1": {
|
257
270
|
"model": "Echo Dot",
|
258
271
|
"hw_version": "Gen4",
|
@@ -269,6 +282,10 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
269
282
|
"model": "Echo Dot",
|
270
283
|
"hw_version": "Gen3",
|
271
284
|
},
|
285
|
+
"A31DTMEEVDDOIV": {
|
286
|
+
"model": "Fire TV Stick Lite",
|
287
|
+
"hw_version": "Gen1",
|
288
|
+
},
|
272
289
|
"A32DDESGESSHZA": {
|
273
290
|
"model": "Echo Dot",
|
274
291
|
"hw_version": "Gen3",
|
@@ -281,6 +298,15 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
281
298
|
"model": "Smart TV 4K",
|
282
299
|
"hw_version": "4 Series",
|
283
300
|
},
|
301
|
+
"A38949IHXHRQ5P": {
|
302
|
+
"model": "Echo Tap",
|
303
|
+
"hw_version": "Gen1",
|
304
|
+
},
|
305
|
+
"A39OV95SPFQ9YG": {
|
306
|
+
"manufacturer": "Sonos Inc.",
|
307
|
+
"model": "Sonos Era 100",
|
308
|
+
"hw_version": None,
|
309
|
+
},
|
284
310
|
"A3C9PE6TNYLTCH": {
|
285
311
|
"model": "Speaker Group",
|
286
312
|
"hw_version": None,
|
@@ -293,10 +319,18 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
293
319
|
"model": "FireTV 4k MAX",
|
294
320
|
"hw_version": "Gen1",
|
295
321
|
},
|
322
|
+
"A3FX4UWTP28V1P": {
|
323
|
+
"model": "Echo",
|
324
|
+
"hw_version": "Gen3",
|
325
|
+
},
|
296
326
|
"A3HF4YRA2L7XGC": {
|
297
327
|
"model": "Fire TV Cube",
|
298
328
|
"hw_version": "Gen1",
|
299
329
|
},
|
330
|
+
"A3HND3J60V1OXX": {
|
331
|
+
"model": "Echo Loop",
|
332
|
+
"hw_version": None,
|
333
|
+
},
|
300
334
|
"A3NPD82ABCPIDP": {
|
301
335
|
"manufacturer": "Sonos Inc.",
|
302
336
|
"model": "Sonos Beam",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|