aioamazondevices 3.0.1__tar.gz → 3.0.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.0.1 → aioamazondevices-3.0.2}/PKG-INFO +1 -1
- {aioamazondevices-3.0.1 → aioamazondevices-3.0.2}/pyproject.toml +1 -1
- {aioamazondevices-3.0.1 → aioamazondevices-3.0.2}/src/aioamazondevices/__init__.py +1 -1
- {aioamazondevices-3.0.1 → aioamazondevices-3.0.2}/src/aioamazondevices/api.py +1 -1
- {aioamazondevices-3.0.1 → aioamazondevices-3.0.2}/src/aioamazondevices/const.py +41 -13
- {aioamazondevices-3.0.1 → aioamazondevices-3.0.2}/LICENSE +0 -0
- {aioamazondevices-3.0.1 → aioamazondevices-3.0.2}/README.md +0 -0
- {aioamazondevices-3.0.1 → aioamazondevices-3.0.2}/src/aioamazondevices/exceptions.py +0 -0
- {aioamazondevices-3.0.1 → aioamazondevices-3.0.2}/src/aioamazondevices/httpx.py +0 -0
- {aioamazondevices-3.0.1 → aioamazondevices-3.0.2}/src/aioamazondevices/py.typed +0 -0
- {aioamazondevices-3.0.1 → aioamazondevices-3.0.2}/src/aioamazondevices/sounds.py +0 -0
@@ -122,7 +122,7 @@ class AmazonEchoApi:
|
|
122
122
|
self._serial = self._serial_number()
|
123
123
|
self._list_for_clusters: dict[str, str] = {}
|
124
124
|
|
125
|
-
self.session: ClientSession
|
125
|
+
self.session: ClientSession | HttpxClientSession
|
126
126
|
|
127
127
|
def _load_website_cookies(self) -> dict[str, str]:
|
128
128
|
"""Get website cookies, if avaliables."""
|
@@ -66,6 +66,18 @@ BIN_EXTENSION = ".bin"
|
|
66
66
|
SPEAKER_GROUP_MODEL = "Speaker Group"
|
67
67
|
|
68
68
|
DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
69
|
+
"A10A33FOX2NUBK": {
|
70
|
+
"model": "Echo Spot",
|
71
|
+
"hw_version": "Gen1",
|
72
|
+
},
|
73
|
+
"A11QM4H9HGV71H": {
|
74
|
+
"model": "Echo Show 5",
|
75
|
+
"hw_version": "Gen3",
|
76
|
+
},
|
77
|
+
"A1Q6UGEXJZWJQ0": {
|
78
|
+
"model": "Fire TV Stick",
|
79
|
+
"hw_version": "4K",
|
80
|
+
},
|
69
81
|
"A1RABVCI4QCIKC": {
|
70
82
|
"model": "Echo Dot",
|
71
83
|
"hw_version": "Gen3",
|
@@ -78,10 +90,22 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
78
90
|
"model": "Echo Dot Clock",
|
79
91
|
"hw_version": "Gen4",
|
80
92
|
},
|
93
|
+
"A2LWARUGJLBYEW": {
|
94
|
+
"model": "Fire TV Stick",
|
95
|
+
"hw_version": "Gen2",
|
96
|
+
},
|
97
|
+
"A2M4YX06LWP8WI": {
|
98
|
+
"model": "Fire Tablet",
|
99
|
+
"hw_version": "Gen1",
|
100
|
+
},
|
81
101
|
"A2U21SRK4QGSE1": {
|
82
102
|
"model": "Echo Dot Clock",
|
83
103
|
"hw_version": "Gen4",
|
84
104
|
},
|
105
|
+
"A303PJF6ISQ7IC": {
|
106
|
+
"model": "Echo Auto",
|
107
|
+
"hw_version": "Gen1",
|
108
|
+
},
|
85
109
|
"A32DDESGESSHZA": {
|
86
110
|
"model": "Echo Dot",
|
87
111
|
"hw_version": "Gen3",
|
@@ -90,6 +114,10 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
90
114
|
"model": "Echo Dot",
|
91
115
|
"hw_version": "Gen3",
|
92
116
|
},
|
117
|
+
"A3C9PE6TNYLTCH": {
|
118
|
+
"model": "Speaker Group",
|
119
|
+
"hw_version": "None",
|
120
|
+
},
|
93
121
|
"A3RMGO6LYLH7YN": {
|
94
122
|
"model": "Echo Dot",
|
95
123
|
"hw_version": "Gen4",
|
@@ -98,28 +126,28 @@ DEVICE_TYPE_TO_MODEL: dict[str, dict[str, str | None]] = {
|
|
98
126
|
"model": "Echo Dot",
|
99
127
|
"hw_version": "Gen2",
|
100
128
|
},
|
129
|
+
"A4ZP7ZC4PI6TO": {
|
130
|
+
"model": "Echo Show 3",
|
131
|
+
"hw_version": "Gen1",
|
132
|
+
},
|
101
133
|
"A4ZXE0RM7LQ7A": {
|
102
134
|
"model": "Echo Dot",
|
103
135
|
"hw_version": "Gen5",
|
104
136
|
},
|
105
|
-
"
|
137
|
+
"A7WXQPH584YP": {
|
106
138
|
"model": "Echo Dot",
|
107
|
-
"hw_version": "
|
108
|
-
},
|
109
|
-
"A3C9PE6TNYLTCH": {
|
110
|
-
"model": SPEAKER_GROUP_MODEL,
|
111
|
-
"hw_version": None,
|
139
|
+
"hw_version": "Gen2",
|
112
140
|
},
|
113
|
-
"
|
114
|
-
"model": "
|
115
|
-
"hw_version": "
|
141
|
+
"AB72C64C86AW2": {
|
142
|
+
"model": "Echo Dot",
|
143
|
+
"hw_version": "Gen2",
|
116
144
|
},
|
117
|
-
"
|
118
|
-
"model": "Echo
|
145
|
+
"AKNO1N0KSFN8L": {
|
146
|
+
"model": "Echo Dot",
|
119
147
|
"hw_version": "Gen1",
|
120
148
|
},
|
121
|
-
"
|
122
|
-
"model": "Echo
|
149
|
+
"G2A0V704840708AP": {
|
150
|
+
"model": "Echo Plus",
|
123
151
|
"hw_version": "Gen2",
|
124
152
|
},
|
125
153
|
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|