aioamazondevices 3.1.10__tar.gz → 3.1.12__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.1.10 → aioamazondevices-3.1.12}/PKG-INFO +1 -1
- {aioamazondevices-3.1.10 → aioamazondevices-3.1.12}/pyproject.toml +1 -1
- {aioamazondevices-3.1.10 → aioamazondevices-3.1.12}/src/aioamazondevices/__init__.py +1 -1
- {aioamazondevices-3.1.10 → aioamazondevices-3.1.12}/src/aioamazondevices/const.py +53 -2
- {aioamazondevices-3.1.10 → aioamazondevices-3.1.12}/LICENSE +0 -0
- {aioamazondevices-3.1.10 → aioamazondevices-3.1.12}/README.md +0 -0
- {aioamazondevices-3.1.10 → aioamazondevices-3.1.12}/src/aioamazondevices/api.py +0 -0
- {aioamazondevices-3.1.10 → aioamazondevices-3.1.12}/src/aioamazondevices/exceptions.py +0 -0
- {aioamazondevices-3.1.10 → aioamazondevices-3.1.12}/src/aioamazondevices/py.typed +0 -0
- {aioamazondevices-3.1.10 → aioamazondevices-3.1.12}/src/aioamazondevices/sounds.py +0 -0
@@ -7,6 +7,14 @@ _LOGGER = logging.getLogger(__package__)
|
|
7
7
|
DEFAULT_ASSOC_HANDLE = "amzn_dp_project_dee_ios"
|
8
8
|
|
9
9
|
DOMAIN_BY_ISO3166_COUNTRY = {
|
10
|
+
"ar": {
|
11
|
+
"domain": "com",
|
12
|
+
"openid.assoc_handle": DEFAULT_ASSOC_HANDLE,
|
13
|
+
},
|
14
|
+
"at": {
|
15
|
+
"domain": "de",
|
16
|
+
"openid.assoc_handle": f"{DEFAULT_ASSOC_HANDLE}_de",
|
17
|
+
},
|
10
18
|
"au": {
|
11
19
|
"domain": "com.au",
|
12
20
|
"openid.assoc_handle": DEFAULT_ASSOC_HANDLE,
|
@@ -111,10 +119,18 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
111
119
|
"model": "Echo Show 5",
|
112
120
|
"hw_version": "Gen3",
|
113
121
|
},
|
122
|
+
"A13W6HQIHKEN3Z": {
|
123
|
+
"model": "Echo Auto",
|
124
|
+
"hw_version": "Gen2",
|
125
|
+
},
|
114
126
|
"A15996VY63BQ2D": {
|
115
127
|
"model": "Echo Show 8",
|
116
128
|
"hw_version": "Gen2",
|
117
129
|
},
|
130
|
+
"A1EIANJ7PNB0Q7": {
|
131
|
+
"model": "Echo Show 15",
|
132
|
+
"hw_version": "Gen1",
|
133
|
+
},
|
118
134
|
"A1Q6UGEXJZWJQ0": {
|
119
135
|
"model": "Fire TV Stick 4K",
|
120
136
|
"hw_version": "Gen2",
|
@@ -131,6 +147,11 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
131
147
|
"model": "Fire TV Cube",
|
132
148
|
"hw_version": "Gen3",
|
133
149
|
},
|
150
|
+
"A1WAR447VT003J": {
|
151
|
+
"manufacturer": "Yamaha",
|
152
|
+
"model": "RX A4 Aventage",
|
153
|
+
"hw_version": None,
|
154
|
+
},
|
134
155
|
"A1WZKXFLI43K86": {
|
135
156
|
"model": "FireTV 4k MAX",
|
136
157
|
"hw_version": "Gen2",
|
@@ -151,6 +172,10 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
151
172
|
"model": "Echo Dot Clock",
|
152
173
|
"hw_version": "Gen5",
|
153
174
|
},
|
175
|
+
"A2GFL5ZMWNE0PX": {
|
176
|
+
"model": "Fire TV",
|
177
|
+
"hw_version": "Gen3",
|
178
|
+
},
|
154
179
|
"A2H4LV5GIZ1JFT": {
|
155
180
|
"model": "Echo Dot Clock",
|
156
181
|
"hw_version": "Gen4",
|
@@ -168,7 +193,7 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
168
193
|
"hw_version": "Gen5",
|
169
194
|
},
|
170
195
|
"A2U21SRK4QGSE1": {
|
171
|
-
"model": "Echo Dot
|
196
|
+
"model": "Echo Dot",
|
172
197
|
"hw_version": "Gen4",
|
173
198
|
},
|
174
199
|
"A2UONLFQW0PADH": {
|
@@ -191,14 +216,31 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
191
216
|
"model": "Echo Dot",
|
192
217
|
"hw_version": "Gen3",
|
193
218
|
},
|
219
|
+
"A33S43L213VSHQ ": {
|
220
|
+
"model": "Smart TV 4K",
|
221
|
+
"hw_version": "4 Series",
|
222
|
+
},
|
194
223
|
"A3C9PE6TNYLTCH": {
|
195
224
|
"model": "Speaker Group",
|
196
225
|
"hw_version": None,
|
197
226
|
},
|
227
|
+
"A3EH2E0YZ30OD6": {
|
228
|
+
"model": "Echo Spot",
|
229
|
+
"hw_version": "Gen2",
|
230
|
+
},
|
198
231
|
"A3EVMLQTU6WL1W": {
|
199
232
|
"model": "FireTV 4k MAX",
|
200
233
|
"hw_version": "Gen1",
|
201
234
|
},
|
235
|
+
"A3HF4YRA2L7XGC": {
|
236
|
+
"model": "Fire TV Cube",
|
237
|
+
"hw_version": "Gen1",
|
238
|
+
},
|
239
|
+
"A3NPD82ABCPIDP": {
|
240
|
+
"manufacturer": "Sonos Inc.",
|
241
|
+
"model": "Sonos Beam",
|
242
|
+
"hw_version": None,
|
243
|
+
},
|
202
244
|
"A3RMGO6LYLH7YN": {
|
203
245
|
"model": "Echo Dot",
|
204
246
|
"hw_version": "Gen4",
|
@@ -219,12 +261,17 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
219
261
|
"model": "Echo Dot",
|
220
262
|
"hw_version": "Gen5",
|
221
263
|
},
|
264
|
+
"A50R5P5LEX87M ": {
|
265
|
+
"manufacturer": "JBL",
|
266
|
+
"model": "JBL BAR 500",
|
267
|
+
"hw_version": None,
|
268
|
+
},
|
222
269
|
"A7WXQPH584YP": {
|
223
270
|
"model": "Echo",
|
224
271
|
"hw_version": "Gen2",
|
225
272
|
},
|
226
273
|
"AB72C64C86AW2": {
|
227
|
-
"model": "Echo
|
274
|
+
"model": "Echo",
|
228
275
|
"hw_version": "Gen2",
|
229
276
|
},
|
230
277
|
"ADVBD696BHNV5": {
|
@@ -243,6 +290,10 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
243
290
|
"model": "Fire TV Stick 4K",
|
244
291
|
"hw_version": "Gen1",
|
245
292
|
},
|
293
|
+
"ASQZWP4GPYUT7": {
|
294
|
+
"model": "Echo pop",
|
295
|
+
"hw_version": "Gen1",
|
296
|
+
},
|
246
297
|
"ATNLRCEBX3W4P": {
|
247
298
|
"model": "Fire Tablet HD 10",
|
248
299
|
"hw_version": "Gen11",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|