homeassistant-stubs 2025.4.1__py3-none-any.whl → 2025.4.2__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.
- homeassistant-stubs/components/fritz/button.pyi +1 -2
- homeassistant-stubs/components/fritz/entity.pyi +1 -0
- homeassistant-stubs/components/fritz/switch.pyi +0 -1
- homeassistant-stubs/components/husqvarna_automower/coordinator.pyi +1 -0
- homeassistant-stubs/components/lcn/sensor.pyi +1 -1
- homeassistant-stubs/components/mqtt/discovery.pyi +1 -1
- homeassistant-stubs/components/roborock/coordinator.pyi +1 -0
- homeassistant-stubs/components/samsungtv/device_trigger.pyi +1 -0
- homeassistant-stubs/components/shelly/const.pyi +1 -0
- homeassistant-stubs/components/shelly/utils.pyi +1 -1
- {homeassistant_stubs-2025.4.1.dist-info → homeassistant_stubs-2025.4.2.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.4.1.dist-info → homeassistant_stubs-2025.4.2.dist-info}/RECORD +14 -14
- {homeassistant_stubs-2025.4.1.dist-info → homeassistant_stubs-2025.4.2.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.4.1.dist-info → homeassistant_stubs-2025.4.2.dist-info}/licenses/LICENSE +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
from .const import BUTTON_TYPE_WOL as BUTTON_TYPE_WOL, CONNECTION_TYPE_LAN as CONNECTION_TYPE_LAN,
|
1
|
+
from .const import BUTTON_TYPE_WOL as BUTTON_TYPE_WOL, CONNECTION_TYPE_LAN as CONNECTION_TYPE_LAN, MeshRoles as MeshRoles
|
2
2
|
from .coordinator import AvmWrapper as AvmWrapper, FRITZ_DATA_KEY as FRITZ_DATA_KEY, FritzConfigEntry as FritzConfigEntry, FritzData as FritzData, FritzDevice as FritzDevice, _is_tracked as _is_tracked
|
3
3
|
from .entity import FritzDeviceBase as FritzDeviceBase
|
4
4
|
from _typeshed import Incomplete
|
@@ -40,6 +40,5 @@ class FritzBoxWOLButton(FritzDeviceBase, ButtonEntity):
|
|
40
40
|
_name: Incomplete
|
41
41
|
_attr_unique_id: Incomplete
|
42
42
|
_is_available: bool
|
43
|
-
_attr_device_info: Incomplete
|
44
43
|
def __init__(self, avm_wrapper: AvmWrapper, device: FritzDevice) -> None: ...
|
45
44
|
async def async_press(self) -> None: ...
|
@@ -13,6 +13,7 @@ class FritzDeviceBase(CoordinatorEntity[AvmWrapper]):
|
|
13
13
|
_avm_wrapper: Incomplete
|
14
14
|
_mac: str
|
15
15
|
_name: str
|
16
|
+
_attr_device_info: Incomplete
|
16
17
|
def __init__(self, avm_wrapper: AvmWrapper, device: FritzDevice) -> None: ...
|
17
18
|
@property
|
18
19
|
def name(self) -> str: ...
|
@@ -98,7 +98,6 @@ class FritzBoxProfileSwitch(FritzDeviceBase, SwitchEntity):
|
|
98
98
|
_name: Incomplete
|
99
99
|
_attr_unique_id: Incomplete
|
100
100
|
_attr_entity_category: Incomplete
|
101
|
-
_attr_device_info: Incomplete
|
102
101
|
def __init__(self, avm_wrapper: AvmWrapper, device: FritzDevice) -> None: ...
|
103
102
|
@property
|
104
103
|
def is_on(self) -> bool | None: ...
|
@@ -30,6 +30,7 @@ class AutomowerDataUpdateCoordinator(DataUpdateCoordinator[MowerDictionary]):
|
|
30
30
|
@callback
|
31
31
|
def callback(self, ws_data: MowerDictionary) -> None: ...
|
32
32
|
async def client_listen(self, hass: HomeAssistant, entry: AutomowerConfigEntry, automower_client: AutomowerSession) -> None: ...
|
33
|
+
data: Incomplete
|
33
34
|
def _async_add_remove_devices(self, data: MowerDictionary) -> None: ...
|
34
35
|
def _remove_device(self, removed_devices: set[str]) -> None: ...
|
35
36
|
def _add_new_devices(self, new_devices: set[str]) -> None: ...
|
@@ -5,7 +5,7 @@ from _typeshed import Incomplete
|
|
5
5
|
from collections.abc import Iterable
|
6
6
|
from homeassistant.components.sensor import SensorDeviceClass as SensorDeviceClass, SensorEntity as SensorEntity
|
7
7
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
8
|
-
from homeassistant.const import CONF_DOMAIN as CONF_DOMAIN, CONF_ENTITIES as CONF_ENTITIES, CONF_SOURCE as CONF_SOURCE, CONF_UNIT_OF_MEASUREMENT as CONF_UNIT_OF_MEASUREMENT, LIGHT_LUX as LIGHT_LUX, UnitOfElectricCurrent as UnitOfElectricCurrent, UnitOfElectricPotential as UnitOfElectricPotential, UnitOfSpeed as UnitOfSpeed, UnitOfTemperature as UnitOfTemperature
|
8
|
+
from homeassistant.const import CONCENTRATION_PARTS_PER_MILLION as CONCENTRATION_PARTS_PER_MILLION, CONF_DOMAIN as CONF_DOMAIN, CONF_ENTITIES as CONF_ENTITIES, CONF_SOURCE as CONF_SOURCE, CONF_UNIT_OF_MEASUREMENT as CONF_UNIT_OF_MEASUREMENT, LIGHT_LUX as LIGHT_LUX, UnitOfElectricCurrent as UnitOfElectricCurrent, UnitOfElectricPotential as UnitOfElectricPotential, UnitOfSpeed as UnitOfSpeed, UnitOfTemperature as UnitOfTemperature
|
9
9
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
10
10
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
|
11
11
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
@@ -49,7 +49,7 @@ def get_origin_log_string(discovery_payload: MQTTDiscoveryPayload, *, include_ur
|
|
49
49
|
@callback
|
50
50
|
def get_origin_support_url(discovery_payload: MQTTDiscoveryPayload) -> str | None: ...
|
51
51
|
@callback
|
52
|
-
def async_log_discovery_origin_info(message: str, discovery_payload: MQTTDiscoveryPayload
|
52
|
+
def async_log_discovery_origin_info(message: str, discovery_payload: MQTTDiscoveryPayload) -> None: ...
|
53
53
|
@callback
|
54
54
|
def _replace_abbreviations(payload: dict[str, Any] | str, abbreviations: dict[str, str], abbreviations_set: set[str]) -> None: ...
|
55
55
|
@callback
|
@@ -46,6 +46,7 @@ class RoborockDataUpdateCoordinator(DataUpdateCoordinator[DeviceProp]):
|
|
46
46
|
_api_client: Incomplete
|
47
47
|
_is_cloud_api: bool
|
48
48
|
map_parser: Incomplete
|
49
|
+
last_update_state: str | None
|
49
50
|
def __init__(self, hass: HomeAssistant, config_entry: RoborockConfigEntry, device: HomeDataDevice, device_networking: NetworkInfo, product_info: HomeDataProduct, cloud_api: RoborockMqttClientV1, home_data_rooms: list[HomeDataRoom], api_client: RoborockApiClient, user_data: UserData) -> None: ...
|
50
51
|
@cached_property
|
51
52
|
def dock_device_info(self) -> DeviceInfo: ...
|
@@ -1,4 +1,5 @@
|
|
1
1
|
from . import trigger as trigger
|
2
|
+
from .const import DOMAIN as DOMAIN
|
2
3
|
from .helpers import async_get_client_by_device_entry as async_get_client_by_device_entry, async_get_device_entry_by_device_id as async_get_device_entry_by_device_id
|
3
4
|
from .triggers.turn_on import async_get_turn_on_trigger as async_get_turn_on_trigger
|
4
5
|
from _typeshed import Incomplete
|
@@ -1,4 +1,4 @@
|
|
1
|
-
from .const import API_WS_URL as API_WS_URL, BASIC_INPUTS_EVENTS_TYPES as BASIC_INPUTS_EVENTS_TYPES, COMPONENT_ID_PATTERN as COMPONENT_ID_PATTERN, CONF_COAP_PORT as CONF_COAP_PORT, CONF_GEN as CONF_GEN, DEVICES_WITHOUT_FIRMWARE_CHANGELOG as DEVICES_WITHOUT_FIRMWARE_CHANGELOG, DOMAIN as DOMAIN, FIRMWARE_UNSUPPORTED_ISSUE_ID as FIRMWARE_UNSUPPORTED_ISSUE_ID, GEN1_RELEASE_URL as GEN1_RELEASE_URL, GEN2_BETA_RELEASE_URL as GEN2_BETA_RELEASE_URL, GEN2_RELEASE_URL as GEN2_RELEASE_URL, LOGGER as LOGGER, RPC_INPUTS_EVENTS_TYPES as RPC_INPUTS_EVENTS_TYPES, SHAIR_MAX_WORK_HOURS as SHAIR_MAX_WORK_HOURS, SHBTN_INPUTS_EVENTS_TYPES as SHBTN_INPUTS_EVENTS_TYPES, SHBTN_MODELS as SHBTN_MODELS, SHELLY_EMIT_EVENT_PATTERN as SHELLY_EMIT_EVENT_PATTERN, SHIX3_1_INPUTS_EVENTS_TYPES as SHIX3_1_INPUTS_EVENTS_TYPES, UPTIME_DEVIATION as UPTIME_DEVIATION, VIRTUAL_COMPONENTS_MAP as VIRTUAL_COMPONENTS_MAP
|
1
|
+
from .const import API_WS_URL as API_WS_URL, BASIC_INPUTS_EVENTS_TYPES as BASIC_INPUTS_EVENTS_TYPES, COMPONENT_ID_PATTERN as COMPONENT_ID_PATTERN, CONF_COAP_PORT as CONF_COAP_PORT, CONF_GEN as CONF_GEN, DEVICES_WITHOUT_FIRMWARE_CHANGELOG as DEVICES_WITHOUT_FIRMWARE_CHANGELOG, DOMAIN as DOMAIN, FIRMWARE_UNSUPPORTED_ISSUE_ID as FIRMWARE_UNSUPPORTED_ISSUE_ID, GEN1_RELEASE_URL as GEN1_RELEASE_URL, GEN2_BETA_RELEASE_URL as GEN2_BETA_RELEASE_URL, GEN2_RELEASE_URL as GEN2_RELEASE_URL, LOGGER as LOGGER, MAX_SCRIPT_SIZE as MAX_SCRIPT_SIZE, RPC_INPUTS_EVENTS_TYPES as RPC_INPUTS_EVENTS_TYPES, SHAIR_MAX_WORK_HOURS as SHAIR_MAX_WORK_HOURS, SHBTN_INPUTS_EVENTS_TYPES as SHBTN_INPUTS_EVENTS_TYPES, SHBTN_MODELS as SHBTN_MODELS, SHELLY_EMIT_EVENT_PATTERN as SHELLY_EMIT_EVENT_PATTERN, SHIX3_1_INPUTS_EVENTS_TYPES as SHIX3_1_INPUTS_EVENTS_TYPES, UPTIME_DEVIATION as UPTIME_DEVIATION, VIRTUAL_COMPONENTS_MAP as VIRTUAL_COMPONENTS_MAP
|
2
2
|
from _typeshed import Incomplete
|
3
3
|
from aiohttp.web import Request as Request, WebSocketResponse as WebSocketResponse
|
4
4
|
from aioshelly.block_device import Block as Block, BlockDevice as BlockDevice, COAP
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.4.
|
3
|
+
Version: 2025.4.2
|
4
4
|
Summary: PEP 484 typing stubs for Home Assistant Core
|
5
5
|
Project-URL: Homepage, https://github.com/KapJI/homeassistant-stubs
|
6
6
|
Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
|
@@ -18,7 +18,7 @@ Classifier: Topic :: Home Automation
|
|
18
18
|
Classifier: Topic :: Software Development
|
19
19
|
Classifier: Typing :: Typed
|
20
20
|
Requires-Python: <3.14,>=3.13
|
21
|
-
Requires-Dist: homeassistant==2025.4.
|
21
|
+
Requires-Dist: homeassistant==2025.4.2
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
@@ -1180,17 +1180,17 @@ homeassistant-stubs/components/forecast_solar/energy.pyi,sha256=FH3h2DDEl9IXJ1uh
|
|
1180
1180
|
homeassistant-stubs/components/forecast_solar/sensor.pyi,sha256=g22gqsLZMbh8u1jFQPWneY3H3OjQYQQgQ50iqxyDsIc,2031
|
1181
1181
|
homeassistant-stubs/components/fritz/__init__.pyi,sha256=a5nYcBDGKtCfxN7c9ApO9HltBeU1lm75iCF1jzz9zRw,1225
|
1182
1182
|
homeassistant-stubs/components/fritz/binary_sensor.pyi,sha256=Nvp-UqDTSKC9Of6Due6qxSBvvRerDVaIANqjmiBRyvs,1403
|
1183
|
-
homeassistant-stubs/components/fritz/button.pyi,sha256=
|
1183
|
+
homeassistant-stubs/components/fritz/button.pyi,sha256=F__LIYIMGOR83rXA-XJb213POygGCGXxHmuCNgF-VV8,2332
|
1184
1184
|
homeassistant-stubs/components/fritz/config_flow.pyi,sha256=ObaceA6EhDBdzpR0oT5Li74AN9Gr3ZCZ6ooOZYBflJo,3522
|
1185
1185
|
homeassistant-stubs/components/fritz/const.pyi,sha256=fcVX1RZeTDGHxPDD0mmUFv_49wZiMBOsrO28kRB9R8E,846
|
1186
1186
|
homeassistant-stubs/components/fritz/coordinator.pyi,sha256=t4VKG4tofXFkmlmTdzH2vb-EYlax4kAi1SMX0TcNjMA,8699
|
1187
1187
|
homeassistant-stubs/components/fritz/device_tracker.pyi,sha256=XzK00Kq3xPD4FsiarUPRiMtsUaM8y6P41fYRrpWQ-zQ,1492
|
1188
1188
|
homeassistant-stubs/components/fritz/diagnostics.pyi,sha256=3powfSFJ0kW1phe1jcYZCayBtPjwHNntd2gFvX03eTE,501
|
1189
|
-
homeassistant-stubs/components/fritz/entity.pyi,sha256=
|
1189
|
+
homeassistant-stubs/components/fritz/entity.pyi,sha256=lQIIR8mYTWyjEgTFjUvwWkcOBnkAXUHKW1jHRonAKjA,1996
|
1190
1190
|
homeassistant-stubs/components/fritz/image.pyi,sha256=9T-7neUZfxU58MYShpBRAKfSlYRoLwDzaTUy4txqBLo,1349
|
1191
1191
|
homeassistant-stubs/components/fritz/sensor.pyi,sha256=wZQqATSZohjNtWhrwc5a-b-r0C__DhTLszGzbRqtVzs,3332
|
1192
1192
|
homeassistant-stubs/components/fritz/services.pyi,sha256=5c0OJZ0liYjvrAz6uYbPd2_w7LH1mlvWh-ntmZWSRRU,700
|
1193
|
-
homeassistant-stubs/components/fritz/switch.pyi,sha256=
|
1193
|
+
homeassistant-stubs/components/fritz/switch.pyi,sha256=7nBCuaBeRJN-sKtCpi02wbaCEslMWMAI4IeE_X9yMBI,6290
|
1194
1194
|
homeassistant-stubs/components/fritz/update.pyi,sha256=vzNUWpic9ep2dJByaC5QQ__4bbSrPagfSsgRGFMdHIU,1609
|
1195
1195
|
homeassistant-stubs/components/fritzbox/__init__.pyi,sha256=mkJ-cgF2g3XOPrAJRkrym67u-oAIGWQyOJ895yO3eQU,927
|
1196
1196
|
homeassistant-stubs/components/fritzbox/binary_sensor.pyi,sha256=nGzNBEY2hpkmUG6fZogYGB1jRB6tjfcHFPTj05XRuZ8,1577
|
@@ -1599,7 +1599,7 @@ homeassistant-stubs/components/husqvarna_automower/button.pyi,sha256=J-Xkzv_08MP
|
|
1599
1599
|
homeassistant-stubs/components/husqvarna_automower/calendar.pyi,sha256=oHO_WLFMSkL0_lZnO5FygEPXMjICkBDBipKnFTOb-0c,1198
|
1600
1600
|
homeassistant-stubs/components/husqvarna_automower/config_flow.pyi,sha256=t0l4tH4gyrBlWdjDqnq-X5Pel-KIyxhKz63t6mANih4,1246
|
1601
1601
|
homeassistant-stubs/components/husqvarna_automower/const.pyi,sha256=pB_yshRzHGZhhBWm33OAgDjR0ZOKWXCECioUDJ-O6RE,88
|
1602
|
-
homeassistant-stubs/components/husqvarna_automower/coordinator.pyi,sha256=
|
1602
|
+
homeassistant-stubs/components/husqvarna_automower/coordinator.pyi,sha256=0I85ruSRIJsiHB8zPzmaeZb10XCm5c6reWDlEZryTFA,2257
|
1603
1603
|
homeassistant-stubs/components/husqvarna_automower/device_tracker.pyi,sha256=N8tQiMIx3L8WrK0E0-DNIFPAYlwxYpCFVGCf02Eh6dw,1003
|
1604
1604
|
homeassistant-stubs/components/husqvarna_automower/diagnostics.pyi,sha256=27vHm8uRvtXHDGVjJHVsd1eqPhK-VK2iogXJxmsM938,783
|
1605
1605
|
homeassistant-stubs/components/husqvarna_automower/entity.pyi,sha256=xflXGzaUdvP0lZDNHr5PfTDf-YPllCTFxxzpEGISctU,2181
|
@@ -1890,7 +1890,7 @@ homeassistant-stubs/components/lcn/helpers.pyi,sha256=fjJP9nix5MOT8Di-maJBh-z5mx
|
|
1890
1890
|
homeassistant-stubs/components/lcn/light.pyi,sha256=Ac19ytcXtMG-8wYAlE7dRJqpsVW6TxufNKbp6JIOD1A,2615
|
1891
1891
|
homeassistant-stubs/components/lcn/scene.pyi,sha256=ctGo1CiVj6lzDrHKPmbUpmygHrzTjTtAFfvStFpIumE,1508
|
1892
1892
|
homeassistant-stubs/components/lcn/schemas.pyi,sha256=6vbTShkS8oXdoCoejoWcJcF6xbGRwSuTF38630_Vtj8,1437
|
1893
|
-
homeassistant-stubs/components/lcn/sensor.pyi,sha256=
|
1893
|
+
homeassistant-stubs/components/lcn/sensor.pyi,sha256=9oblf7RPoeqLI0nuAbQrrrpr_QOadV3qymLk0VVfFsk,2474
|
1894
1894
|
homeassistant-stubs/components/lcn/services.pyi,sha256=Ik4Ost6EB0g7Xig-kFEkoU2RsjQMD5n57KuLVjw-6i8,3949
|
1895
1895
|
homeassistant-stubs/components/lcn/switch.pyi,sha256=YTAQstb5kEAnB1b-sWppYgUixcjpEVJgNc20dbwu3oU,3218
|
1896
1896
|
homeassistant-stubs/components/lcn/websocket.pyi,sha256=kLVuojZd6U-LiL-42VUIlY55fm_EsS1zSzeUcEdX6FU,4073
|
@@ -2245,7 +2245,7 @@ homeassistant-stubs/components/mqtt/device_automation.pyi,sha256=IUUdjxgTtI9Tm09
|
|
2245
2245
|
homeassistant-stubs/components/mqtt/device_tracker.pyi,sha256=VfkUSmJ14jc_h7NqNuAlbE7p-paDCZ3HN1t7HOK2FBo,2960
|
2246
2246
|
homeassistant-stubs/components/mqtt/device_trigger.pyi,sha256=38Y4xsYlpkaZKE-0vcV0mXlL4Yijg1WZxaAKVrLI48I,3735
|
2247
2247
|
homeassistant-stubs/components/mqtt/diagnostics.pyi,sha256=EqYi_zyaQXTI5Tf9l-jojhNligQJfzIR2HM-c6c5l0c,1247
|
2248
|
-
homeassistant-stubs/components/mqtt/discovery.pyi,sha256=
|
2248
|
+
homeassistant-stubs/components/mqtt/discovery.pyi,sha256=cmkvgKf3bgG8uWsH--IIa6igtaeSjfx5dqAna866cxc,4388
|
2249
2249
|
homeassistant-stubs/components/mqtt/entity.pyi,sha256=X6xuD0vuDAro6WREHBu4PHnTSUA8oFtbGVfFZOuxamI,14229
|
2250
2250
|
homeassistant-stubs/components/mqtt/event.pyi,sha256=kiX4RscCazbiJ2X0HMD044QNPD9DhXg9Bg3rx4GPtQg,2707
|
2251
2251
|
homeassistant-stubs/components/mqtt/fan.pyi,sha256=gXQgL6-Az0hjSUFrVCeF1km86j88YHmXRcCM5UWyrfA,5755
|
@@ -2977,7 +2977,7 @@ homeassistant-stubs/components/roborock/binary_sensor.pyi,sha256=Zo5Xxl9JzFcSkod
|
|
2977
2977
|
homeassistant-stubs/components/roborock/button.pyi,sha256=EHMz6OgT2_1l8lZrgvTesIUaIOMCbfzi1Mkmzl2XAkk,1745
|
2978
2978
|
homeassistant-stubs/components/roborock/config_flow.pyi,sha256=HLTuVEeeJGxlhlNf7KFn_o7IdE2WfkNhRqc-Mu42luw,2267
|
2979
2979
|
homeassistant-stubs/components/roborock/const.pyi,sha256=Qv8-E5W25YjRMogJrgXOFma8caCLE-qy3PXh_61kytQ,653
|
2980
|
-
homeassistant-stubs/components/roborock/coordinator.pyi,sha256=
|
2980
|
+
homeassistant-stubs/components/roborock/coordinator.pyi,sha256=TLR7clD0pUGUaGhnLvdQewRvHRA9C8a1lx0sn9I6MQ8,5046
|
2981
2981
|
homeassistant-stubs/components/roborock/diagnostics.pyi,sha256=-3WvDcLI0Qv0p6P9R8eSQZtgFZll5d9gKTEDBx6RmEA,522
|
2982
2982
|
homeassistant-stubs/components/roborock/entity.pyi,sha256=HZJlRf5JB2SGuMajkriwTeLctc1RbdhYsWyexZ3pklA,3287
|
2983
2983
|
homeassistant-stubs/components/roborock/image.pyi,sha256=fuGXpI2NKLRxz9QCru_LnSv1LRDjBxm_SM3iiSD93vs,1515
|
@@ -3040,7 +3040,7 @@ homeassistant-stubs/components/samsungtv/bridge.pyi,sha256=D4_PlTcoStKj4vyHQ2FBA
|
|
3040
3040
|
homeassistant-stubs/components/samsungtv/config_flow.pyi,sha256=kBHdRw5xU1IGHUdrE97jGeqr9GsHuIiUXl1ZhQgIIuU,5475
|
3041
3041
|
homeassistant-stubs/components/samsungtv/const.pyi,sha256=SzwXEL84Lf1Yk7u28m2azWsh9SfvyKF_4opoa2dxlpE,784
|
3042
3042
|
homeassistant-stubs/components/samsungtv/coordinator.pyi,sha256=kTsmbocbMnZGbM-1H1R2TNn66oc4Aj0y2Kz9xPwT0dA,941
|
3043
|
-
homeassistant-stubs/components/samsungtv/device_trigger.pyi,sha256=
|
3043
|
+
homeassistant-stubs/components/samsungtv/device_trigger.pyi,sha256=Bfm1gTYZHTrzjri7BJITonEgRA08fIkzpq9LPYRK7c0,1396
|
3044
3044
|
homeassistant-stubs/components/samsungtv/diagnostics.pyi,sha256=znDI3vMXeypPz6-FCW302PVRhyaTOydE4Uz4tofvqCo,529
|
3045
3045
|
homeassistant-stubs/components/samsungtv/entity.pyi,sha256=mtv7EW1Jn9u92WXJ44hlSRpmxyDczl07I27ImoO7xkw,1490
|
3046
3046
|
homeassistant-stubs/components/samsungtv/helpers.pyi,sha256=fHBrjek6jd66MMyLi__cZ0Mm_oShvrGJRzXaA5OuvxQ,719
|
@@ -3140,7 +3140,7 @@ homeassistant-stubs/components/shelly/binary_sensor.pyi,sha256=pFkOx4poNQ40z5YvO
|
|
3140
3140
|
homeassistant-stubs/components/shelly/button.pyi,sha256=QmJCGrUKZu3EKpyXWrLAGruZ0yCtCqPOMDdFzhNzGuY,3192
|
3141
3141
|
homeassistant-stubs/components/shelly/climate.pyi,sha256=jGUvORFfb1oXBxWIAmKgzU3SP5PXx8ZijSlog_5u3N4,6510
|
3142
3142
|
homeassistant-stubs/components/shelly/config_flow.pyi,sha256=2c-Ts6K2edfe_HnVek_a37Nicm8AdTNKjut4OQaixDc,3266
|
3143
|
-
homeassistant-stubs/components/shelly/const.pyi,sha256=
|
3143
|
+
homeassistant-stubs/components/shelly/const.pyi,sha256=JRlw-ATKK4Ov47p5evSWNs4WVbWi7Y9T-Tt_V57ErNk,2713
|
3144
3144
|
homeassistant-stubs/components/shelly/coordinator.pyi,sha256=1jzipFvY5hjJAY5-z1gsnCoS6FpW8yGCl7z46g9reSc,8102
|
3145
3145
|
homeassistant-stubs/components/shelly/cover.pyi,sha256=Pusvd7WFW8EmxId6Y0RBh39aiOU6uXtPS0cyca4eroM,3264
|
3146
3146
|
homeassistant-stubs/components/shelly/device_trigger.pyi,sha256=XN-5ZZxFHd7yFQ0PRTC3oHqWae5ZIBATFwPgRV68P1Q,1923
|
@@ -3155,7 +3155,7 @@ homeassistant-stubs/components/shelly/sensor.pyi,sha256=rbMARhCOMtc0CxsDDMZScg_i
|
|
3155
3155
|
homeassistant-stubs/components/shelly/switch.pyi,sha256=AQZT3nfLlvKxZtdnNpLouQh9zLv-1nOr5Oz1awxfxDw,4335
|
3156
3156
|
homeassistant-stubs/components/shelly/text.pyi,sha256=0nDreeiGQlqhUDvIsBaQX-v9eGN-GBV45kcPcKK0NpA,1319
|
3157
3157
|
homeassistant-stubs/components/shelly/update.pyi,sha256=HWcaQ_KdH_0SoFuSX1Ui8040kL764uxS3gsXvGEq7Zc,4276
|
3158
|
-
homeassistant-stubs/components/shelly/utils.pyi,sha256=
|
3158
|
+
homeassistant-stubs/components/shelly/utils.pyi,sha256=K5QjHkpODzEscj5kpZUT2agki55_RqqeOz7hHe-Ct8Q,6040
|
3159
3159
|
homeassistant-stubs/components/shelly/valve.pyi,sha256=SIh5bXs7rrQ38sl0llF9zsevG5EM9ETOBNxUMm571I4,2122
|
3160
3160
|
homeassistant-stubs/components/shelly/bluetooth/__init__.pyi,sha256=XuBsD_H0LeEeMkoUKhZ28UobIB-50EzL7uUh4Wxmlpc,609
|
3161
3161
|
homeassistant-stubs/components/shopping_list/__init__.pyi,sha256=GwWcwIbVIQHeP2bLRDb4FFpbwWcCYXGjMdgTH-EBcpg,4861
|
@@ -4140,7 +4140,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
4140
4140
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
4141
4141
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=cgUew76NjS7Q1Aml5sLBE2DB9JGrJS2fE-EDE92p-og,805
|
4142
4142
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
4143
|
-
homeassistant_stubs-2025.4.
|
4144
|
-
homeassistant_stubs-2025.4.
|
4145
|
-
homeassistant_stubs-2025.4.
|
4146
|
-
homeassistant_stubs-2025.4.
|
4143
|
+
homeassistant_stubs-2025.4.2.dist-info/METADATA,sha256=4lK667FdI_bSkBPJEwE7az0M4CFVPdDAgVUy77uscPU,2952
|
4144
|
+
homeassistant_stubs-2025.4.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4145
|
+
homeassistant_stubs-2025.4.2.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4146
|
+
homeassistant_stubs-2025.4.2.dist-info/RECORD,,
|
File without changes
|
{homeassistant_stubs-2025.4.1.dist-info → homeassistant_stubs-2025.4.2.dist-info}/licenses/LICENSE
RENAMED
File without changes
|