homeassistant 2025.10.0b1__py3-none-any.whl → 2025.10.0b2__py3-none-any.whl
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.
Potentially problematic release.
This version of homeassistant might be problematic. Click here for more details.
- homeassistant/components/accuweather/manifest.json +1 -1
- homeassistant/components/alexa_devices/binary_sensor.py +36 -38
- homeassistant/components/alexa_devices/config_flow.py +2 -2
- homeassistant/components/alexa_devices/coordinator.py +1 -1
- homeassistant/components/alexa_devices/diagnostics.py +1 -3
- homeassistant/components/alexa_devices/icons.json +0 -40
- homeassistant/components/alexa_devices/manifest.json +1 -1
- homeassistant/components/alexa_devices/sensor.py +13 -0
- homeassistant/components/alexa_devices/strings.json +0 -20
- homeassistant/components/alexa_devices/switch.py +27 -7
- homeassistant/components/alexa_devices/translations/bg.json +0 -13
- homeassistant/components/alexa_devices/translations/cs.json +0 -20
- homeassistant/components/alexa_devices/translations/de.json +0 -20
- homeassistant/components/alexa_devices/translations/el.json +0 -20
- homeassistant/components/alexa_devices/translations/en-GB.json +0 -20
- homeassistant/components/alexa_devices/translations/en.json +0 -20
- homeassistant/components/alexa_devices/translations/es.json +0 -20
- homeassistant/components/alexa_devices/translations/et.json +0 -20
- homeassistant/components/alexa_devices/translations/ga.json +0 -20
- homeassistant/components/alexa_devices/translations/he.json +0 -7
- homeassistant/components/alexa_devices/translations/hu.json +0 -20
- homeassistant/components/alexa_devices/translations/it.json +0 -20
- homeassistant/components/alexa_devices/translations/ja.json +0 -19
- homeassistant/components/alexa_devices/translations/lt.json +0 -20
- homeassistant/components/alexa_devices/translations/mk.json +0 -14
- homeassistant/components/alexa_devices/translations/nl.json +0 -20
- homeassistant/components/alexa_devices/translations/pl.json +0 -5
- homeassistant/components/alexa_devices/translations/pt.json +0 -20
- homeassistant/components/alexa_devices/translations/ru.json +0 -5
- homeassistant/components/alexa_devices/translations/sk.json +0 -20
- homeassistant/components/alexa_devices/translations/sv.json +0 -20
- homeassistant/components/alexa_devices/translations/tr.json +0 -5
- homeassistant/components/alexa_devices/translations/zh-Hans.json +0 -20
- homeassistant/components/alexa_devices/translations/zh-Hant.json +0 -20
- homeassistant/components/alexa_devices/utils.py +24 -1
- homeassistant/components/assist_pipeline/translations/nl.json +1 -0
- homeassistant/components/esphome/manifest.json +1 -1
- homeassistant/components/esphome/translations/nl.json +1 -1
- homeassistant/components/frontend/manifest.json +1 -1
- homeassistant/components/mvglive/manifest.json +2 -4
- homeassistant/components/mvglive/sensor.py +116 -86
- homeassistant/components/smartthings/manifest.json +1 -1
- homeassistant/components/voip/translations/nl.json +1 -1
- homeassistant/components/wyoming/translations/nl.json +1 -1
- homeassistant/const.py +1 -1
- homeassistant/package_constraints.txt +1 -1
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/METADATA +1 -1
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/RECORD +53 -53
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/WHEEL +0 -0
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/entry_points.txt +0 -0
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/licenses/LICENSE.md +0 -0
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/licenses/homeassistant/backports/LICENSE.Python +0 -0
- {homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/top_level.txt +0 -0
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
"""Support for departure information for public transport in Munich."""
|
|
2
2
|
|
|
3
|
-
# mypy: ignore-errors
|
|
4
3
|
from __future__ import annotations
|
|
5
4
|
|
|
5
|
+
from collections.abc import Mapping
|
|
6
6
|
from copy import deepcopy
|
|
7
7
|
from datetime import timedelta
|
|
8
8
|
import logging
|
|
9
|
+
from typing import Any
|
|
9
10
|
|
|
10
|
-
import
|
|
11
|
+
from mvg import MvgApi, MvgApiError, TransportType
|
|
11
12
|
import voluptuous as vol
|
|
12
13
|
|
|
13
14
|
from homeassistant.components.sensor import (
|
|
@@ -19,6 +20,7 @@ from homeassistant.core import HomeAssistant
|
|
|
19
20
|
from homeassistant.helpers import config_validation as cv
|
|
20
21
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
21
22
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
23
|
+
import homeassistant.util.dt as dt_util
|
|
22
24
|
|
|
23
25
|
_LOGGER = logging.getLogger(__name__)
|
|
24
26
|
|
|
@@ -44,53 +46,55 @@ ICONS = {
|
|
|
44
46
|
"SEV": "mdi:checkbox-blank-circle-outline",
|
|
45
47
|
"-": "mdi:clock",
|
|
46
48
|
}
|
|
47
|
-
|
|
49
|
+
|
|
50
|
+
ATTRIBUTION = "Data provided by mvg.de"
|
|
48
51
|
|
|
49
52
|
SCAN_INTERVAL = timedelta(seconds=30)
|
|
50
53
|
|
|
51
|
-
PLATFORM_SCHEMA =
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
54
|
+
PLATFORM_SCHEMA = vol.All(
|
|
55
|
+
cv.deprecated(CONF_DIRECTIONS),
|
|
56
|
+
SENSOR_PLATFORM_SCHEMA.extend(
|
|
57
|
+
{
|
|
58
|
+
vol.Required(CONF_NEXT_DEPARTURE): [
|
|
59
|
+
{
|
|
60
|
+
vol.Required(CONF_STATION): cv.string,
|
|
61
|
+
vol.Optional(CONF_DESTINATIONS, default=[""]): cv.ensure_list_csv,
|
|
62
|
+
vol.Optional(CONF_DIRECTIONS, default=[""]): cv.ensure_list_csv,
|
|
63
|
+
vol.Optional(CONF_LINES, default=[""]): cv.ensure_list_csv,
|
|
64
|
+
vol.Optional(
|
|
65
|
+
CONF_PRODUCTS, default=DEFAULT_PRODUCT
|
|
66
|
+
): cv.ensure_list_csv,
|
|
67
|
+
vol.Optional(CONF_TIMEOFFSET, default=0): cv.positive_int,
|
|
68
|
+
vol.Optional(CONF_NUMBER, default=1): cv.positive_int,
|
|
69
|
+
vol.Optional(CONF_NAME): cv.string,
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
}
|
|
73
|
+
),
|
|
68
74
|
)
|
|
69
75
|
|
|
70
76
|
|
|
71
|
-
def
|
|
77
|
+
async def async_setup_platform(
|
|
72
78
|
hass: HomeAssistant,
|
|
73
79
|
config: ConfigType,
|
|
74
80
|
add_entities: AddEntitiesCallback,
|
|
75
81
|
discovery_info: DiscoveryInfoType | None = None,
|
|
76
82
|
) -> None:
|
|
77
83
|
"""Set up the MVGLive sensor."""
|
|
78
|
-
|
|
79
|
-
(
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
True,
|
|
93
|
-
)
|
|
84
|
+
sensors = [
|
|
85
|
+
MVGLiveSensor(
|
|
86
|
+
hass,
|
|
87
|
+
nextdeparture.get(CONF_STATION),
|
|
88
|
+
nextdeparture.get(CONF_DESTINATIONS),
|
|
89
|
+
nextdeparture.get(CONF_LINES),
|
|
90
|
+
nextdeparture.get(CONF_PRODUCTS),
|
|
91
|
+
nextdeparture.get(CONF_TIMEOFFSET),
|
|
92
|
+
nextdeparture.get(CONF_NUMBER),
|
|
93
|
+
nextdeparture.get(CONF_NAME),
|
|
94
|
+
)
|
|
95
|
+
for nextdeparture in config[CONF_NEXT_DEPARTURE]
|
|
96
|
+
]
|
|
97
|
+
add_entities(sensors, True)
|
|
94
98
|
|
|
95
99
|
|
|
96
100
|
class MVGLiveSensor(SensorEntity):
|
|
@@ -100,38 +104,38 @@ class MVGLiveSensor(SensorEntity):
|
|
|
100
104
|
|
|
101
105
|
def __init__(
|
|
102
106
|
self,
|
|
103
|
-
|
|
107
|
+
hass: HomeAssistant,
|
|
108
|
+
station_name,
|
|
104
109
|
destinations,
|
|
105
|
-
directions,
|
|
106
110
|
lines,
|
|
107
111
|
products,
|
|
108
112
|
timeoffset,
|
|
109
113
|
number,
|
|
110
114
|
name,
|
|
111
|
-
):
|
|
115
|
+
) -> None:
|
|
112
116
|
"""Initialize the sensor."""
|
|
113
|
-
self._station = station
|
|
114
117
|
self._name = name
|
|
118
|
+
self._station_name = station_name
|
|
115
119
|
self.data = MVGLiveData(
|
|
116
|
-
|
|
120
|
+
hass, station_name, destinations, lines, products, timeoffset, number
|
|
117
121
|
)
|
|
118
122
|
self._state = None
|
|
119
123
|
self._icon = ICONS["-"]
|
|
120
124
|
|
|
121
125
|
@property
|
|
122
|
-
def name(self):
|
|
126
|
+
def name(self) -> str | None:
|
|
123
127
|
"""Return the name of the sensor."""
|
|
124
128
|
if self._name:
|
|
125
129
|
return self._name
|
|
126
|
-
return self.
|
|
130
|
+
return self._station_name
|
|
127
131
|
|
|
128
132
|
@property
|
|
129
|
-
def native_value(self):
|
|
133
|
+
def native_value(self) -> str | None:
|
|
130
134
|
"""Return the next departure time."""
|
|
131
135
|
return self._state
|
|
132
136
|
|
|
133
137
|
@property
|
|
134
|
-
def extra_state_attributes(self):
|
|
138
|
+
def extra_state_attributes(self) -> Mapping[str, Any] | None:
|
|
135
139
|
"""Return the state attributes."""
|
|
136
140
|
if not (dep := self.data.departures):
|
|
137
141
|
return None
|
|
@@ -140,88 +144,114 @@ class MVGLiveSensor(SensorEntity):
|
|
|
140
144
|
return attr
|
|
141
145
|
|
|
142
146
|
@property
|
|
143
|
-
def icon(self):
|
|
147
|
+
def icon(self) -> str | None:
|
|
144
148
|
"""Icon to use in the frontend, if any."""
|
|
145
149
|
return self._icon
|
|
146
150
|
|
|
147
151
|
@property
|
|
148
|
-
def native_unit_of_measurement(self):
|
|
152
|
+
def native_unit_of_measurement(self) -> str | None:
|
|
149
153
|
"""Return the unit this state is expressed in."""
|
|
150
154
|
return UnitOfTime.MINUTES
|
|
151
155
|
|
|
152
|
-
def
|
|
156
|
+
async def async_update(self) -> None:
|
|
153
157
|
"""Get the latest data and update the state."""
|
|
154
|
-
self.data.update()
|
|
158
|
+
await self.data.update()
|
|
155
159
|
if not self.data.departures:
|
|
156
|
-
self._state =
|
|
160
|
+
self._state = None
|
|
157
161
|
self._icon = ICONS["-"]
|
|
158
162
|
else:
|
|
159
|
-
self._state = self.data.departures[0].get("
|
|
160
|
-
self._icon =
|
|
163
|
+
self._state = self.data.departures[0].get("time_in_mins", "-")
|
|
164
|
+
self._icon = self.data.departures[0].get("icon", ICONS["-"])
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
def _get_minutes_until_departure(departure_time: int) -> int:
|
|
168
|
+
"""Calculate the time difference in minutes between the current time and a given departure time.
|
|
169
|
+
|
|
170
|
+
Args:
|
|
171
|
+
departure_time: Unix timestamp of the departure time, in seconds.
|
|
172
|
+
|
|
173
|
+
Returns:
|
|
174
|
+
The time difference in minutes, as an integer.
|
|
175
|
+
|
|
176
|
+
"""
|
|
177
|
+
current_time = dt_util.utcnow()
|
|
178
|
+
departure_datetime = dt_util.utc_from_timestamp(departure_time)
|
|
179
|
+
time_difference = (departure_datetime - current_time).total_seconds()
|
|
180
|
+
return int(time_difference / 60.0)
|
|
161
181
|
|
|
162
182
|
|
|
163
183
|
class MVGLiveData:
|
|
164
|
-
"""Pull data from the mvg
|
|
184
|
+
"""Pull data from the mvg.de web page."""
|
|
165
185
|
|
|
166
186
|
def __init__(
|
|
167
|
-
self,
|
|
168
|
-
|
|
187
|
+
self,
|
|
188
|
+
hass: HomeAssistant,
|
|
189
|
+
station_name,
|
|
190
|
+
destinations,
|
|
191
|
+
lines,
|
|
192
|
+
products,
|
|
193
|
+
timeoffset,
|
|
194
|
+
number,
|
|
195
|
+
) -> None:
|
|
169
196
|
"""Initialize the sensor."""
|
|
170
|
-
self.
|
|
197
|
+
self._hass = hass
|
|
198
|
+
self._station_name = station_name
|
|
199
|
+
self._station_id = None
|
|
171
200
|
self._destinations = destinations
|
|
172
|
-
self._directions = directions
|
|
173
201
|
self._lines = lines
|
|
174
202
|
self._products = products
|
|
175
203
|
self._timeoffset = timeoffset
|
|
176
204
|
self._number = number
|
|
177
|
-
self.
|
|
178
|
-
self._include_tram = "Tram" in self._products
|
|
179
|
-
self._include_bus = "Bus" in self._products
|
|
180
|
-
self._include_sbahn = "S-Bahn" in self._products
|
|
181
|
-
self.mvg = MVGLive.MVGLive()
|
|
182
|
-
self.departures = []
|
|
205
|
+
self.departures: list[dict[str, Any]] = []
|
|
183
206
|
|
|
184
|
-
def update(self):
|
|
207
|
+
async def update(self):
|
|
185
208
|
"""Update the connection data."""
|
|
209
|
+
if self._station_id is None:
|
|
210
|
+
try:
|
|
211
|
+
station = await MvgApi.station_async(self._station_name)
|
|
212
|
+
self._station_id = station["id"]
|
|
213
|
+
except MvgApiError as err:
|
|
214
|
+
_LOGGER.error(
|
|
215
|
+
"Failed to resolve station %s: %s", self._station_name, err
|
|
216
|
+
)
|
|
217
|
+
self.departures = []
|
|
218
|
+
return
|
|
219
|
+
|
|
186
220
|
try:
|
|
187
|
-
_departures =
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
221
|
+
_departures = await MvgApi.departures_async(
|
|
222
|
+
station_id=self._station_id,
|
|
223
|
+
offset=self._timeoffset,
|
|
224
|
+
limit=self._number,
|
|
225
|
+
transport_types=[
|
|
226
|
+
transport_type
|
|
227
|
+
for transport_type in TransportType
|
|
228
|
+
if transport_type.value[0] in self._products
|
|
229
|
+
]
|
|
230
|
+
if self._products
|
|
231
|
+
else None,
|
|
194
232
|
)
|
|
195
233
|
except ValueError:
|
|
196
234
|
self.departures = []
|
|
197
235
|
_LOGGER.warning("Returned data not understood")
|
|
198
236
|
return
|
|
199
237
|
self.departures = []
|
|
200
|
-
for
|
|
201
|
-
# find the first departure meeting the criteria
|
|
238
|
+
for _departure in _departures:
|
|
202
239
|
if (
|
|
203
240
|
"" not in self._destinations[:1]
|
|
204
241
|
and _departure["destination"] not in self._destinations
|
|
205
242
|
):
|
|
206
243
|
continue
|
|
207
244
|
|
|
208
|
-
if
|
|
209
|
-
"" not in self._directions[:1]
|
|
210
|
-
and _departure["direction"] not in self._directions
|
|
211
|
-
):
|
|
245
|
+
if "" not in self._lines[:1] and _departure["line"] not in self._lines:
|
|
212
246
|
continue
|
|
213
247
|
|
|
214
|
-
|
|
215
|
-
continue
|
|
248
|
+
time_to_departure = _get_minutes_until_departure(_departure["time"])
|
|
216
249
|
|
|
217
|
-
if
|
|
250
|
+
if time_to_departure < self._timeoffset:
|
|
218
251
|
continue
|
|
219
252
|
|
|
220
|
-
# now select the relevant data
|
|
221
253
|
_nextdep = {}
|
|
222
|
-
for k in ("destination", "
|
|
254
|
+
for k in ("destination", "line", "type", "cancelled", "icon"):
|
|
223
255
|
_nextdep[k] = _departure.get(k, "")
|
|
224
|
-
_nextdep["
|
|
256
|
+
_nextdep["time_in_mins"] = time_to_departure
|
|
225
257
|
self.departures.append(_nextdep)
|
|
226
|
-
if i == self._number - 1:
|
|
227
|
-
break
|
homeassistant/const.py
CHANGED
|
@@ -26,7 +26,7 @@ if TYPE_CHECKING:
|
|
|
26
26
|
APPLICATION_NAME: Final = "HomeAssistant"
|
|
27
27
|
MAJOR_VERSION: Final = 2025
|
|
28
28
|
MINOR_VERSION: Final = 10
|
|
29
|
-
PATCH_VERSION: Final = "
|
|
29
|
+
PATCH_VERSION: Final = "0b2"
|
|
30
30
|
__short_version__: Final = f"{MAJOR_VERSION}.{MINOR_VERSION}"
|
|
31
31
|
__version__: Final = f"{__short_version__}.{PATCH_VERSION}"
|
|
32
32
|
REQUIRED_PYTHON_VER: Final[tuple[int, int, int]] = (3, 13, 2)
|
|
@@ -5,13 +5,13 @@ homeassistant/block_async_io.py,sha256=X-M42w6huY1nUgv-b81jlbsbJ_ap7bgNfbfzyB8TD
|
|
|
5
5
|
homeassistant/bootstrap.py,sha256=W9hYip6oC7bQSmO62GxQ3FatIayKHUM80a7YIT7d6L4,37666
|
|
6
6
|
homeassistant/config.py,sha256=JLFP5ax4iWNh1DMBQjLFZt4t2B-xD2pbuhJsdGqK8l8,46427
|
|
7
7
|
homeassistant/config_entries.py,sha256=lO6l_j7l_9-9uORLiEi3CDDzZ3tvyPpgtTmY6WrWWUQ,143727
|
|
8
|
-
homeassistant/const.py,sha256
|
|
8
|
+
homeassistant/const.py,sha256=lTZkl4M6fsktRZZAZKM7wL8HRPLoMTSK_4V04errv9I,32337
|
|
9
9
|
homeassistant/core.py,sha256=-EazchePB6g8PbSO2ybjdesfwob0pAgk_N7UlLxZGBI,99955
|
|
10
10
|
homeassistant/core_config.py,sha256=C4AzTEYmmcCg7vLqWTu6iBUPt24pXoLvoyuQVdN5k9U,31239
|
|
11
11
|
homeassistant/data_entry_flow.py,sha256=cGjMZ96HXiWvNpqRKy5YQqy8lF1PGYfvhJNWEHjixU0,37367
|
|
12
12
|
homeassistant/exceptions.py,sha256=C2RjcafVAtaoEIYlHyMuKENxHpioWGGKGMCIElrA5XE,10027
|
|
13
13
|
homeassistant/loader.py,sha256=Qw27CgB2uBw9hmuaoHcNY_6vNkGkUM96eiFFyPZU_Z4,61447
|
|
14
|
-
homeassistant/package_constraints.txt,sha256=
|
|
14
|
+
homeassistant/package_constraints.txt,sha256=1LqohUL0yvgPO8oVj9wjOITvvWjpCLu6LJ2wZ4RUYko,6530
|
|
15
15
|
homeassistant/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
homeassistant/requirements.py,sha256=F0rclsrdrHcSx86EPkMhMaaLujZdEYqR50g0D7oOFOE,11733
|
|
17
17
|
homeassistant/runner.py,sha256=48Puy7TCvzW44iijV7cmtIaU_94eVE-gZ8OGMDCPiwo,10582
|
|
@@ -239,7 +239,7 @@ homeassistant/components/accuweather/const.py,sha256=V_4Ex6XmxmLOc7XxVDY5dxHuMvS
|
|
|
239
239
|
homeassistant/components/accuweather/coordinator.py,sha256=4eqv5wG0jLMO8XzeiDwXVkxkbz06AiCbzfoj2FPSQFc,6874
|
|
240
240
|
homeassistant/components/accuweather/diagnostics.py,sha256=YtMROP6FN0pKIvRus5LTdA6GSVoMSNT1s2qmvatYrYg,842
|
|
241
241
|
homeassistant/components/accuweather/icons.json,sha256=ZE7RAbyJVyMQ0DRxsm_vhVRLih1rrPxhBfEV72-cysI,1155
|
|
242
|
-
homeassistant/components/accuweather/manifest.json,sha256=
|
|
242
|
+
homeassistant/components/accuweather/manifest.json,sha256=eHGTMN3NNLbt0d7gvG42_wz7WYmJ8Wylm001sQT69zs,321
|
|
243
243
|
homeassistant/components/accuweather/sensor.py,sha256=18x4HC8Rp3hosaUHSmf0wEHnTfzsV97U6gekMdIWLdk,19662
|
|
244
244
|
homeassistant/components/accuweather/strings.json,sha256=DhvruhQj3hfCnaRY9vUJJthAPsnCGJajt1NTh01Dzq0,10423
|
|
245
245
|
homeassistant/components/accuweather/system_health.py,sha256=4AKuUTgitmho73-Smlbxs1qMWFuvLyd3pXook_Wkvcg,1008
|
|
@@ -1622,50 +1622,50 @@ homeassistant/components/alexa/services.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
1622
1622
|
homeassistant/components/alexa/smart_home.py,sha256=a5yOK1PsPwM72LFyH_zhdt6HIlsmOE9g1aXMhDUaEC4,7972
|
|
1623
1623
|
homeassistant/components/alexa/state_report.py,sha256=DnpiMIpTdV204PlAPUh7R_z3cqKaHWCuSecNI3WZ_9w,18448
|
|
1624
1624
|
homeassistant/components/alexa_devices/__init__.py,sha256=d1XeRNR6QDTcVCR5rubLglMUf6ZGx9PyWsRJExIG9kQ,2911
|
|
1625
|
-
homeassistant/components/alexa_devices/binary_sensor.py,sha256=
|
|
1626
|
-
homeassistant/components/alexa_devices/config_flow.py,sha256=
|
|
1625
|
+
homeassistant/components/alexa_devices/binary_sensor.py,sha256=PY710Ij_L6JxhZe1RAB1ZUs044FMuW_BjlUnEvSmkZ4,4002
|
|
1626
|
+
homeassistant/components/alexa_devices/config_flow.py,sha256=DC2JtBnmW1AvL00sraPZeKnfsgp2m0a_7NtCUmaxWl0,5836
|
|
1627
1627
|
homeassistant/components/alexa_devices/const.py,sha256=-ks5VzKCdiu6HlPC0XMvNWqLm9S-DFn5QA3z0MI3m_0,550
|
|
1628
|
-
homeassistant/components/alexa_devices/coordinator.py,sha256=
|
|
1629
|
-
homeassistant/components/alexa_devices/diagnostics.py,sha256=
|
|
1628
|
+
homeassistant/components/alexa_devices/coordinator.py,sha256=uzWuRGN80v4zGMVMHzBYs-wmLLGukkxO6ORL4gNK03Q,3531
|
|
1629
|
+
homeassistant/components/alexa_devices/diagnostics.py,sha256=frKhD4KoC1PRLyPLJEQeesVeiMV4NfCJQ6HN-dCh9HM,2017
|
|
1630
1630
|
homeassistant/components/alexa_devices/entity.py,sha256=RGyhAZSnS98WC9PLENtjyYIQ_xuyobIddqqG-cem1j8,2005
|
|
1631
|
-
homeassistant/components/alexa_devices/icons.json,sha256=
|
|
1632
|
-
homeassistant/components/alexa_devices/manifest.json,sha256=
|
|
1631
|
+
homeassistant/components/alexa_devices/icons.json,sha256=gBBp8YqB3SmQbWls3b791fhXlcFDUTEYI-GaiBszX6g,160
|
|
1632
|
+
homeassistant/components/alexa_devices/manifest.json,sha256=m3fvWMp7ybC3YVrDYyQMWKbjCqa0Bjs96rRxMmjRYAU,368
|
|
1633
1633
|
homeassistant/components/alexa_devices/notify.py,sha256=GnNPZ0-5JxuEfGFadvSJNNFRKgRkBnUl6RYvrqGYxoE,2904
|
|
1634
1634
|
homeassistant/components/alexa_devices/quality_scale.yaml,sha256=MXGZ72lEHOCk51ThwOW2WiMXbPyJ48Pbg7RT5BIotS0,1874
|
|
1635
|
-
homeassistant/components/alexa_devices/sensor.py,sha256=
|
|
1635
|
+
homeassistant/components/alexa_devices/sensor.py,sha256=vt6_3c-1v5ezcYEypj0TBC3NjaNcLZoxS4FWKS27Pcc,3616
|
|
1636
1636
|
homeassistant/components/alexa_devices/services.py,sha256=gdsFvR_R335wrmje9s6AslM39CdH5MsYTIF5xUQ7Dvo,3925
|
|
1637
1637
|
homeassistant/components/alexa_devices/services.yaml,sha256=jMGd353qCW0tlF0uZUa8ey8IXN6irxOVWoPOFWVOo6M,2049
|
|
1638
|
-
homeassistant/components/alexa_devices/strings.json,sha256=
|
|
1639
|
-
homeassistant/components/alexa_devices/switch.py,sha256=
|
|
1640
|
-
homeassistant/components/alexa_devices/utils.py,sha256=
|
|
1641
|
-
homeassistant/components/alexa_devices/translations/bg.json,sha256=
|
|
1638
|
+
homeassistant/components/alexa_devices/strings.json,sha256=q1APlwMrPJljawMNHv7uEYmcehyJANxJyOKXxn5kzxs,6481
|
|
1639
|
+
homeassistant/components/alexa_devices/switch.py,sha256=BoPI6YlBAmLU7SWSamZQYHuYi33yqEYtYgJfsLsF39Y,3484
|
|
1640
|
+
homeassistant/components/alexa_devices/utils.py,sha256=BQAGxonpGJfP217Bl5JYci56gp9rC4lvzbyGlYvTCJ0,2315
|
|
1641
|
+
homeassistant/components/alexa_devices/translations/bg.json,sha256=bHVIxaB16KgKbH183zmCSXpBdr1UyYrU36_A_sPNWAQ,6704
|
|
1642
1642
|
homeassistant/components/alexa_devices/translations/ca.json,sha256=28LXSVl-l9Ga6sJ6gGfmyHHc4iO5W8zIihEewuXnnbA,1123
|
|
1643
|
-
homeassistant/components/alexa_devices/translations/cs.json,sha256=
|
|
1644
|
-
homeassistant/components/alexa_devices/translations/de.json,sha256=
|
|
1645
|
-
homeassistant/components/alexa_devices/translations/el.json,sha256=
|
|
1646
|
-
homeassistant/components/alexa_devices/translations/en-GB.json,sha256=
|
|
1647
|
-
homeassistant/components/alexa_devices/translations/en.json,sha256=
|
|
1648
|
-
homeassistant/components/alexa_devices/translations/es.json,sha256=
|
|
1649
|
-
homeassistant/components/alexa_devices/translations/et.json,sha256=
|
|
1643
|
+
homeassistant/components/alexa_devices/translations/cs.json,sha256=VoN3H89qvJUKVmAuUAGWsJguCMvWmjOk4WcKIihO0JY,8538
|
|
1644
|
+
homeassistant/components/alexa_devices/translations/de.json,sha256=mkm4nbJkDVm8FQt1W7GFom7yA2GJ1HxYpdFgAqWA1-Q,7532
|
|
1645
|
+
homeassistant/components/alexa_devices/translations/el.json,sha256=SOZPnSzccn5FccRV4qWOu6oCJB6lEeyd8hMrpSG8Dfk,9060
|
|
1646
|
+
homeassistant/components/alexa_devices/translations/en-GB.json,sha256=TALi-Id4qTGA3t43aySL-vo_mln4WsG1mZhqgpLIJgY,4717
|
|
1647
|
+
homeassistant/components/alexa_devices/translations/en.json,sha256=E6dDqPzcEw-QFoISuoqV_wcCaJe3w4Azjcu7WftDL0Q,7116
|
|
1648
|
+
homeassistant/components/alexa_devices/translations/es.json,sha256=eDcFrgkpnDewjKqtOxTM2t_5WcAA8df2u0duBILwLy4,7837
|
|
1649
|
+
homeassistant/components/alexa_devices/translations/et.json,sha256=jcBzf_YTKB_gqUtJ2EI37Y5Xdif5xgtz-tntheV0FrU,7148
|
|
1650
1650
|
homeassistant/components/alexa_devices/translations/fr.json,sha256=9pEydRyK-gMy93bZgkcS5ozq0CGn9JstgY3f5tTOZ2c,981
|
|
1651
|
-
homeassistant/components/alexa_devices/translations/ga.json,sha256=
|
|
1652
|
-
homeassistant/components/alexa_devices/translations/he.json,sha256=
|
|
1653
|
-
homeassistant/components/alexa_devices/translations/hu.json,sha256=
|
|
1651
|
+
homeassistant/components/alexa_devices/translations/ga.json,sha256=94Ltke9LLZechP_hbGobpJqpsq0z5Lp14NzJkqsyhio,7768
|
|
1652
|
+
homeassistant/components/alexa_devices/translations/he.json,sha256=mWmmbEou-Tt3FGbUNjWPQ3OtSPfRSx0DHvz76tm7w3Q,1763
|
|
1653
|
+
homeassistant/components/alexa_devices/translations/hu.json,sha256=rNPQF2EENePCJCExf89hm6mV_cy0lhj-iSF85ifDla8,2091
|
|
1654
1654
|
homeassistant/components/alexa_devices/translations/id.json,sha256=d6_kCIvHqxWFOvhglHh9Zu6afW6uaVsF0q-FtmRgyFY,1404
|
|
1655
|
-
homeassistant/components/alexa_devices/translations/it.json,sha256=
|
|
1656
|
-
homeassistant/components/alexa_devices/translations/ja.json,sha256=
|
|
1655
|
+
homeassistant/components/alexa_devices/translations/it.json,sha256=AYUclMNsu7dLaHWokphBZzzei5vAfDMmg35ISkVvu8I,3150
|
|
1656
|
+
homeassistant/components/alexa_devices/translations/ja.json,sha256=69OuvUcxXPdIExSQCjCDqKYDMEtlq4dLeKtv79N_fzA,3369
|
|
1657
1657
|
homeassistant/components/alexa_devices/translations/ko.json,sha256=hzcijTBMS-S7iV4LH4ZUlXOCRU8ZBJ0cnJpIKctigwA,385
|
|
1658
|
-
homeassistant/components/alexa_devices/translations/lt.json,sha256=
|
|
1659
|
-
homeassistant/components/alexa_devices/translations/mk.json,sha256=
|
|
1660
|
-
homeassistant/components/alexa_devices/translations/nl.json,sha256=
|
|
1661
|
-
homeassistant/components/alexa_devices/translations/pl.json,sha256=
|
|
1662
|
-
homeassistant/components/alexa_devices/translations/pt.json,sha256
|
|
1663
|
-
homeassistant/components/alexa_devices/translations/ru.json,sha256
|
|
1664
|
-
homeassistant/components/alexa_devices/translations/sk.json,sha256=
|
|
1665
|
-
homeassistant/components/alexa_devices/translations/sv.json,sha256=
|
|
1666
|
-
homeassistant/components/alexa_devices/translations/tr.json,sha256=
|
|
1667
|
-
homeassistant/components/alexa_devices/translations/zh-Hans.json,sha256=
|
|
1668
|
-
homeassistant/components/alexa_devices/translations/zh-Hant.json,sha256=
|
|
1658
|
+
homeassistant/components/alexa_devices/translations/lt.json,sha256=tjoVPd5HfTmgUd7QUrVUIk7efqBZxw2uBX221jPnyrY,8052
|
|
1659
|
+
homeassistant/components/alexa_devices/translations/mk.json,sha256=IbBAaG56-YrNZXXxB3CizcC9erXPJD-sXm6EMn57yz0,1408
|
|
1660
|
+
homeassistant/components/alexa_devices/translations/nl.json,sha256=n2v86zP8cw4ToRmVQFhhJ3P-BfvJdozsYV6Oz4vy3WQ,2260
|
|
1661
|
+
homeassistant/components/alexa_devices/translations/pl.json,sha256=6SUwzXZIf3QLdqphB3tPM3bnFa15d8B5BQOu2FA8-2s,1873
|
|
1662
|
+
homeassistant/components/alexa_devices/translations/pt.json,sha256=s_m7-mhtv9nFW370NVlDuqLMLOopiDYLuFVBxtXA1mo,7844
|
|
1663
|
+
homeassistant/components/alexa_devices/translations/ru.json,sha256=-zUP0b3WYH7MoMV22dnNHz0QFhstZYsGkFOwiPbgkbc,8284
|
|
1664
|
+
homeassistant/components/alexa_devices/translations/sk.json,sha256=9TZa7ycRshI1P7S6F_I6y4HqXA8yv_EhVhXr0TNWNEI,8139
|
|
1665
|
+
homeassistant/components/alexa_devices/translations/sv.json,sha256=vSPFtVJt72hOzjQavBhm-JDwzjDINPaWQm607sxTnIY,3253
|
|
1666
|
+
homeassistant/components/alexa_devices/translations/tr.json,sha256=GTlIl6jDgiq29o6r7FCiy0aTWmcwwiW_CShKHH8JU1o,1968
|
|
1667
|
+
homeassistant/components/alexa_devices/translations/zh-Hans.json,sha256=zHR9YXa1bsqnjWzv1zaRSeEaTNALaz7HmdLlE2rphK4,8642
|
|
1668
|
+
homeassistant/components/alexa_devices/translations/zh-Hant.json,sha256=a_KWXBQqoxRZCFovAMHtG-vKwYnfAWumgYNUJXTip48,8653
|
|
1669
1669
|
homeassistant/components/alpha_vantage/__init__.py,sha256=iLZSIfkT45JVVQn0Yl-IPwLoTI_dKIqyMk9vNTAd7zQ,35
|
|
1670
1670
|
homeassistant/components/alpha_vantage/manifest.json,sha256=htn3T1foisiIYR-Bpju6WdWZbEWU3pk9WEOAoHI69oo,295
|
|
1671
1671
|
homeassistant/components/alpha_vantage/sensor.py,sha256=2ticZsNXk5gO4KVuqM_lVom8s9BVEqGhuGNcX9dIjL0,6762
|
|
@@ -2779,7 +2779,7 @@ homeassistant/components/assist_pipeline/translations/lt.json,sha256=AG7Lw7JtJ3p
|
|
|
2779
2779
|
homeassistant/components/assist_pipeline/translations/lv.json,sha256=BsH34Kp3-2m6zAvJ3Yoiqj9L36EO6IQ30sSnhVfTaxM,336
|
|
2780
2780
|
homeassistant/components/assist_pipeline/translations/mk.json,sha256=VF6CUh4DzAsTB9D_VUifEh52sUWAfMUswsN1tyccqT4,416
|
|
2781
2781
|
homeassistant/components/assist_pipeline/translations/nb.json,sha256=9UujAfhV7XXc0xc3peKDxaZ_9ItauaLfDBhvReEQ2EI,467
|
|
2782
|
-
homeassistant/components/assist_pipeline/translations/nl.json,sha256=
|
|
2782
|
+
homeassistant/components/assist_pipeline/translations/nl.json,sha256=xrP7-CVl1Vh1iFh7GYbhC15mfBUkfCkpB9e6zXHi0sU,633
|
|
2783
2783
|
homeassistant/components/assist_pipeline/translations/pl.json,sha256=OdTGkZtLtvke48deip53zIN5hhTEoTN1bhhd9eathS4,664
|
|
2784
2784
|
homeassistant/components/assist_pipeline/translations/pt-BR.json,sha256=ABUZjJgi6Dk9VkI6OunqTyFFTnkulDtBv50rOx7OFXU,625
|
|
2785
2785
|
homeassistant/components/assist_pipeline/translations/pt.json,sha256=4RWN5uij8j91ziIv95W4Ix8bQ8m0j9lnsJC5S92Bbrw,1317
|
|
@@ -10151,7 +10151,7 @@ homeassistant/components/esphome/icons.json,sha256=hzRg1GSJWtbEfzS8IwOBtclfb39RY
|
|
|
10151
10151
|
homeassistant/components/esphome/light.py,sha256=vsaAhu95xFz8afNC8-McEOAUFtA6zmLijQ-Dy9Iht2s,15655
|
|
10152
10152
|
homeassistant/components/esphome/lock.py,sha256=23G5QUAcQwrKOmheQLszUg8x6iEiJMHPoggQeHjEReQ,3000
|
|
10153
10153
|
homeassistant/components/esphome/manager.py,sha256=IoAlG9te4F9pSgJYXpWcf6Mlmuz36igB9k3Y0w1rrT0,42844
|
|
10154
|
-
homeassistant/components/esphome/manifest.json,sha256=
|
|
10154
|
+
homeassistant/components/esphome/manifest.json,sha256=jUmUZrC3g0tssM5dWokjplzNPeofMLCnEEtj4B4-Kjg,747
|
|
10155
10155
|
homeassistant/components/esphome/media_player.py,sha256=mmC_PC7mBP666xsK2dHtWK1npbjxXdzkLirKQ4WpVPI,11202
|
|
10156
10156
|
homeassistant/components/esphome/number.py,sha256=USOEG0NGp44m71vG6ODoXpVbv_Jja6erUAhfZFngQAQ,2518
|
|
10157
10157
|
homeassistant/components/esphome/quality_scale.yaml,sha256=jNLNinERjjgyJJ9wLMTNDs5PcRooisDHDdZjKtQOC0g,2837
|
|
@@ -10191,7 +10191,7 @@ homeassistant/components/esphome/translations/lt.json,sha256=tR7krmEOzKmZfgOrAJd
|
|
|
10191
10191
|
homeassistant/components/esphome/translations/lv.json,sha256=kjRPhrxHH6P77RNR_kksMuH_ohleHaP6wqeU-G6Wx5o,769
|
|
10192
10192
|
homeassistant/components/esphome/translations/mk.json,sha256=hBp8xGQEDKnQvzLENDLGut8Eu7R6N1CVuud-1gXmy_c,2396
|
|
10193
10193
|
homeassistant/components/esphome/translations/nb.json,sha256=_lMHG_b6nl--D5ij712w83euNTtgrI9_dJNQe3UftV4,2636
|
|
10194
|
-
homeassistant/components/esphome/translations/nl.json,sha256=
|
|
10194
|
+
homeassistant/components/esphome/translations/nl.json,sha256=O-dyFTqSrr3Zac7Z74KoCnoCi-ZO6lYEsy1esM5_1Z8,4754
|
|
10195
10195
|
homeassistant/components/esphome/translations/pl.json,sha256=_KUAJW1f7BUzzPX918najklj3MQwSElWTfdwKVx62qM,2927
|
|
10196
10196
|
homeassistant/components/esphome/translations/pt-BR.json,sha256=V3HL7QJzH2j-ZO3GZBtGp2vUPE4Fy7QR5MkAHiEx31o,2707
|
|
10197
10197
|
homeassistant/components/esphome/translations/pt.json,sha256=df_j3EeqwP1xqQZWfdiX2lWJW1vSro6xPr0DMyDEKUY,14436
|
|
@@ -11970,7 +11970,7 @@ homeassistant/components/fronius/translations/zh-Hans.json,sha256=Vaa4RtOOZ9NIoS
|
|
|
11970
11970
|
homeassistant/components/fronius/translations/zh-Hant.json,sha256=R3afzW9OeHC__UlHMAaQ-hpbq-RjWriVq_dLVEaec_M,22613
|
|
11971
11971
|
homeassistant/components/frontend/__init__.py,sha256=Yln1_PbNh8dDH86thTy7OC6A3wTFdXLJ1P3gBkibLo8,27927
|
|
11972
11972
|
homeassistant/components/frontend/icons.json,sha256=Vs_eYGT5ewiiIc3uz4w4CYyjmlnSE4lqS8L3eYepykU,147
|
|
11973
|
-
homeassistant/components/frontend/manifest.json,sha256=
|
|
11973
|
+
homeassistant/components/frontend/manifest.json,sha256=lcK8LGRG76KRpX09b3uzZxGQdfUYE2NXc02SZN48Bis,544
|
|
11974
11974
|
homeassistant/components/frontend/services.yaml,sha256=llgK5jjIefB4LwfOfFH6gVYB5u0aVamCF2ToHDmEuRo,370
|
|
11975
11975
|
homeassistant/components/frontend/storage.py,sha256=PYM7n72YtJnJLz33IkkXjZ7maehJoeG5JxsMuLbQEc8,5323
|
|
11976
11976
|
homeassistant/components/frontend/strings.json,sha256=8gO2iq1DSgpi9JEA-zl7KJVL3iWZ1sjisvQcj8TwSd4,649
|
|
@@ -23994,9 +23994,9 @@ homeassistant/components/mutesync/translations/vi.json,sha256=2u4Nd3WRPWzrTBvs7d
|
|
|
23994
23994
|
homeassistant/components/mutesync/translations/zh-Hans.json,sha256=1IpXuqKd0tfxKyFENLIaTuAKc4pFYsA5SOlfA7d3hFg,856
|
|
23995
23995
|
homeassistant/components/mutesync/translations/zh-Hant.json,sha256=e1B1MXuZI9-kkF-NGhEz2E3dxrurFKdCW1hKf_Lmucg,851
|
|
23996
23996
|
homeassistant/components/mvglive/__init__.py,sha256=YG29UsZYhfEAeQO7x0EhPWM-RVh4K9tGbzN8LUEiArs,29
|
|
23997
|
-
homeassistant/components/mvglive/manifest.json,sha256=
|
|
23997
|
+
homeassistant/components/mvglive/manifest.json,sha256=2ivi5VHL-0cjZeVDlTDvRZ4whWbdSBNsPKM16XnrwjY,224
|
|
23998
23998
|
homeassistant/components/mvglive/ruff.toml,sha256=tcsbbFh8pHTv8TPSgQqVAReiWvYj6mHmCmEMmrCEzag,70
|
|
23999
|
-
homeassistant/components/mvglive/sensor.py,sha256=
|
|
23999
|
+
homeassistant/components/mvglive/sensor.py,sha256=dokitmfdQXhXpRZ0ji-g43GSQ0FV_vHa1Fb6wSL1qn0,8009
|
|
24000
24000
|
homeassistant/components/my/__init__.py,sha256=XIv6Slnu0YtZku_lDEX71fWsnS0QngsQxEEjobtUris,569
|
|
24001
24001
|
homeassistant/components/my/manifest.json,sha256=Fcc-uPLSR73jEO3f_U2qgegRAwzwGOmJT5ToaL6KFP0,257
|
|
24002
24002
|
homeassistant/components/mycroft/__init__.py,sha256=FcOCdcYY69FqJuOTKBDnNOwn9SlI5dhkUJCKlib3GZc,651
|
|
@@ -34519,7 +34519,7 @@ homeassistant/components/smartthings/fan.py,sha256=ToPh7iF_CHzwmthj9KSsFuzsaEYa3
|
|
|
34519
34519
|
homeassistant/components/smartthings/icons.json,sha256=YBPAaT4ebK7C2DkafQgR0ec20X7DkqJ8GH0rXFxxjPA,3267
|
|
34520
34520
|
homeassistant/components/smartthings/light.py,sha256=5cwt3maTmNkcZPY1A9Upmafd_rladdpEn91MFpKQkk4,8719
|
|
34521
34521
|
homeassistant/components/smartthings/lock.py,sha256=IaibHhX4qzGB96VulmvclNKffMCu3Zjyqnf1AEJkc80,2379
|
|
34522
|
-
homeassistant/components/smartthings/manifest.json,sha256=
|
|
34522
|
+
homeassistant/components/smartthings/manifest.json,sha256=yatv79g1-rLVo7T28EmcZljRNiM6l0Xht5nQZpKcnEw,735
|
|
34523
34523
|
homeassistant/components/smartthings/media_player.py,sha256=eVhHYjQlIryTQYXZTnrTo-yLIboD0jozbh9T6YiCcO4,12346
|
|
34524
34524
|
homeassistant/components/smartthings/number.py,sha256=DiC6sRm2CCd3e5q02LEp3pTCZ3rqI4bkO_an_nUHZ8Q,7688
|
|
34525
34525
|
homeassistant/components/smartthings/quality_scale.yaml,sha256=JFjbQsdQHsRURggzT-gqUEqAPuU4xO7kQsBpmZYLip4,2106
|
|
@@ -41841,7 +41841,7 @@ homeassistant/components/voip/translations/ko.json,sha256=BaVqqNSoKeOcDZgOPTUx13
|
|
|
41841
41841
|
homeassistant/components/voip/translations/lt.json,sha256=uRlMSJazmjQVWSXeGtiax804AIfrJ_CDk5sPGWqbZHM,2274
|
|
41842
41842
|
homeassistant/components/voip/translations/lv.json,sha256=PEy8RopVKrE4OdoD7Ei59ZaFfNZ2zDHo-GAgmpOlwKI,931
|
|
41843
41843
|
homeassistant/components/voip/translations/nb.json,sha256=sDZ2PyS6VlwosaNjV5TxEmgptzQS8IY8CFOP8Y1-M8U,676
|
|
41844
|
-
homeassistant/components/voip/translations/nl.json,sha256=
|
|
41844
|
+
homeassistant/components/voip/translations/nl.json,sha256=2OhBNNr7vRaM54gDdKahMMIld7BsbQwbLj33oiIPeHE,1345
|
|
41845
41845
|
homeassistant/components/voip/translations/pl.json,sha256=uK4ZA_XVjLCrYI0cBCgZ5Vk-0LAzWCMvyYDqWKMgOpY,1185
|
|
41846
41846
|
homeassistant/components/voip/translations/pt-BR.json,sha256=7Zj4orUdxgyCFNKLy5640cxrg63Nuj0y8gmep32dKyM,1512
|
|
41847
41847
|
homeassistant/components/voip/translations/pt.json,sha256=PGnPTp2-cLVgLfM3Qv4sWihF4N0xS9aFZHJkboTp1Os,2141
|
|
@@ -43459,7 +43459,7 @@ homeassistant/components/wyoming/translations/ko.json,sha256=bFGQQAnrc-RCFkbfeUI
|
|
|
43459
43459
|
homeassistant/components/wyoming/translations/lt.json,sha256=qGoMy02MQ8duFpYwpjfvNtlwgyv7LpTihewAg1oDNqY,2343
|
|
43460
43460
|
homeassistant/components/wyoming/translations/lv.json,sha256=rnxvlCYZ_QSKx_HMIiZmtyKMMQeQAd8Lq5mkOthVgYE,706
|
|
43461
43461
|
homeassistant/components/wyoming/translations/nb.json,sha256=nwCBxNhWyjyoZYFXPAUyRgF5td2qYL9v0xT6pD777sA,387
|
|
43462
|
-
homeassistant/components/wyoming/translations/nl.json,sha256=
|
|
43462
|
+
homeassistant/components/wyoming/translations/nl.json,sha256=VQFRX-k8xsA5vUBayP-0uOJ8wqa-kliIHXo1Czi4TXU,2211
|
|
43463
43463
|
homeassistant/components/wyoming/translations/pl.json,sha256=bxOPrHTw1gshP6wIg6J6fCdUe4q3zvy_aby64O7vLZs,1550
|
|
43464
43464
|
homeassistant/components/wyoming/translations/pt-BR.json,sha256=Y9UrFIcLe3PIHVOrlxwUMsJvpmTg4hoCtjfPbLgGctE,1041
|
|
43465
43465
|
homeassistant/components/wyoming/translations/pt.json,sha256=5or9b-P1LQ_daHvgIfTXEvHjwYpREDyQhPFDOwjb17c,2273
|
|
@@ -45089,10 +45089,10 @@ homeassistant/util/yaml/dumper.py,sha256=xOYY662jD4YxcJZ7ZtWiGilyayUSbwVZRHrLYCO
|
|
|
45089
45089
|
homeassistant/util/yaml/input.py,sha256=bs4Z3poZYP6qTtV5nddit0zxPF-XQ9316OK-1JpGiGc,253
|
|
45090
45090
|
homeassistant/util/yaml/loader.py,sha256=Xb3-ObxN4NUlgoKFjugXYC99RPkKYGuO-DNL2im-jz8,2373
|
|
45091
45091
|
homeassistant/util/yaml/objects.py,sha256=oOXAWwT46W9mUpkEWAx81xL5yF-audtv_aevWBG-vAU,216
|
|
45092
|
-
homeassistant-2025.10.
|
|
45093
|
-
homeassistant-2025.10.
|
|
45094
|
-
homeassistant-2025.10.
|
|
45095
|
-
homeassistant-2025.10.
|
|
45096
|
-
homeassistant-2025.10.
|
|
45097
|
-
homeassistant-2025.10.
|
|
45098
|
-
homeassistant-2025.10.
|
|
45092
|
+
homeassistant-2025.10.0b2.dist-info/licenses/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
45093
|
+
homeassistant-2025.10.0b2.dist-info/licenses/homeassistant/backports/LICENSE.Python,sha256=Oy-B_iHRgcSZxZolbI4ZaEVdZonSaaqFNzv7avQdo78,13936
|
|
45094
|
+
homeassistant-2025.10.0b2.dist-info/METADATA,sha256=AQdzTQYRiyHiuR6f5d1mM9CRq5rT6FuuEpE2qy1a-84,4772
|
|
45095
|
+
homeassistant-2025.10.0b2.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
|
|
45096
|
+
homeassistant-2025.10.0b2.dist-info/entry_points.txt,sha256=vyr6SUJRESpnDkwn8ppfqbG-wYAWIoC9RYOrpYbcZYc,53
|
|
45097
|
+
homeassistant-2025.10.0b2.dist-info/top_level.txt,sha256=TifmoS6gUDZ_AwpZP5Hg4MFPB3zbKzwF9BHqPA_wHVw,14
|
|
45098
|
+
homeassistant-2025.10.0b2.dist-info/RECORD,,
|
|
File without changes
|
{homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{homeassistant-2025.10.0b1.dist-info → homeassistant-2025.10.0b2.dist-info}/licenses/LICENSE.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|