homeassistant-stubs 2025.3.0b8__py3-none-any.whl → 2025.3.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/backup/manager.pyi +5 -0
- homeassistant-stubs/components/co2signal/config_flow.pyi +2 -0
- homeassistant-stubs/components/evohome/coordinator.pyi +1 -1
- homeassistant-stubs/components/evohome/entity.pyi +2 -1
- homeassistant-stubs/components/heos/config_flow.pyi +1 -1
- homeassistant-stubs/components/heos/coordinator.pyi +1 -1
- homeassistant-stubs/components/home_connect/__init__.pyi +1 -1
- homeassistant-stubs/components/mqtt/light/schema_json.pyi +1 -1
- homeassistant-stubs/components/onewire/onewirehub.pyi +1 -1
- {homeassistant_stubs-2025.3.0b8.dist-info → homeassistant_stubs-2025.3.2.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.3.0b8.dist-info → homeassistant_stubs-2025.3.2.dist-info}/RECORD +13 -13
- {homeassistant_stubs-2025.3.0b8.dist-info → homeassistant_stubs-2025.3.2.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.3.0b8.dist-info → homeassistant_stubs-2025.3.2.dist-info}/licenses/LICENSE +0 -0
@@ -43,6 +43,7 @@ class WrittenBackup:
|
|
43
43
|
class BackupManagerState(StrEnum):
|
44
44
|
IDLE = 'idle'
|
45
45
|
CREATE_BACKUP = 'create_backup'
|
46
|
+
BLOCKED = 'blocked'
|
46
47
|
RECEIVE_BACKUP = 'receive_backup'
|
47
48
|
RESTORE_BACKUP = 'restore_backup'
|
48
49
|
|
@@ -117,6 +118,10 @@ class RestoreBackupEvent(ManagerStateEvent):
|
|
117
118
|
stage: RestoreBackupStage | None
|
118
119
|
state: RestoreBackupState
|
119
120
|
|
121
|
+
@dataclass(frozen=True, kw_only=True, slots=True)
|
122
|
+
class BlockedEvent(ManagerStateEvent):
|
123
|
+
manager_state: BackupManagerState = ...
|
124
|
+
|
120
125
|
class BackupPlatformProtocol(Protocol):
|
121
126
|
async def async_pre_backup(self, hass: HomeAssistant) -> None: ...
|
122
127
|
async def async_post_backup(self, hass: HomeAssistant) -> None: ...
|
@@ -2,6 +2,7 @@ import voluptuous as vol
|
|
2
2
|
from .const import DOMAIN as DOMAIN
|
3
3
|
from .helpers import fetch_latest_carbon_intensity as fetch_latest_carbon_intensity
|
4
4
|
from .util import get_extra_name as get_extra_name
|
5
|
+
from _typeshed import Incomplete
|
5
6
|
from collections.abc import Mapping
|
6
7
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, SOURCE_REAUTH as SOURCE_REAUTH
|
7
8
|
from homeassistant.const import CONF_API_KEY as CONF_API_KEY, CONF_COUNTRY_CODE as CONF_COUNTRY_CODE, CONF_LATITUDE as CONF_LATITUDE, CONF_LONGITUDE as CONF_LONGITUDE
|
@@ -12,6 +13,7 @@ from typing import Any
|
|
12
13
|
TYPE_USE_HOME: str
|
13
14
|
TYPE_SPECIFY_COORDINATES: str
|
14
15
|
TYPE_SPECIFY_COUNTRY: str
|
16
|
+
_LOGGER: Incomplete
|
15
17
|
|
16
18
|
class ElectricityMapsConfigFlow(ConfigFlow, domain=DOMAIN):
|
17
19
|
VERSION: int
|
@@ -4,7 +4,7 @@ import logging
|
|
4
4
|
from _typeshed import Incomplete
|
5
5
|
from collections.abc import Awaitable
|
6
6
|
from datetime import timedelta
|
7
|
-
from evohomeasync2.schemas.typedefs import EvoLocStatusResponseT as EvoLocStatusResponseT
|
7
|
+
from evohomeasync2.schemas.typedefs import EvoLocStatusResponseT as EvoLocStatusResponseT, EvoTcsConfigResponseT as EvoTcsConfigResponseT
|
8
8
|
from homeassistant.const import CONF_SCAN_INTERVAL as CONF_SCAN_INTERVAL
|
9
9
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
10
10
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
|
@@ -3,6 +3,7 @@ from .const import DOMAIN as DOMAIN, EvoService as EvoService
|
|
3
3
|
from .coordinator import EvoDataUpdateCoordinator as EvoDataUpdateCoordinator
|
4
4
|
from _typeshed import Incomplete
|
5
5
|
from collections.abc import Mapping
|
6
|
+
from evohomeasync2.schemas.typedefs import DayOfWeekDhwT as DayOfWeekDhwT
|
6
7
|
from homeassistant.core import callback as callback
|
7
8
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect as async_dispatcher_connect
|
8
9
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity as CoordinatorEntity
|
@@ -29,7 +30,7 @@ class EvoChild(EvoEntity):
|
|
29
30
|
_evo_device: evo.HotWater | evo.Zone
|
30
31
|
_evo_id: str
|
31
32
|
_evo_tcs: Incomplete
|
32
|
-
_schedule:
|
33
|
+
_schedule: list[DayOfWeekDhwT] | None
|
33
34
|
_setpoints: dict[str, Any]
|
34
35
|
def __init__(self, coordinator: EvoDataUpdateCoordinator, evo_device: evo.HotWater | evo.Zone) -> None: ...
|
35
36
|
@property
|
@@ -2,7 +2,7 @@ from .const import DOMAIN as DOMAIN, ENTRY_TITLE as ENTRY_TITLE
|
|
2
2
|
from .coordinator import HeosConfigEntry as HeosConfigEntry
|
3
3
|
from _typeshed import Incomplete
|
4
4
|
from collections.abc import Mapping
|
5
|
-
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, OptionsFlow as OptionsFlow
|
5
|
+
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, OptionsFlow as OptionsFlow, SOURCE_IGNORE as SOURCE_IGNORE
|
6
6
|
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME
|
7
7
|
from homeassistant.core import callback as callback
|
8
8
|
from homeassistant.helpers import selector as selector
|
@@ -34,7 +34,7 @@ class HeosCoordinator(DataUpdateCoordinator[None]):
|
|
34
34
|
async def _async_on_auth_failure(self) -> None: ...
|
35
35
|
async def _async_on_disconnected(self) -> None: ...
|
36
36
|
async def _async_on_reconnected(self) -> None: ...
|
37
|
-
async def _async_on_controller_event(self, event: str, data: PlayerUpdateResult | None) -> None: ...
|
37
|
+
async def _async_on_controller_event(self, event: str, data: PlayerUpdateResult | None = None) -> None: ...
|
38
38
|
def _async_update_player_ids(self, updated_player_ids: dict[int, int]) -> None: ...
|
39
39
|
async def _async_update_groups(self) -> None: ...
|
40
40
|
async def _async_update_sources(self) -> None: ...
|
@@ -6,7 +6,7 @@ from _typeshed import Incomplete
|
|
6
6
|
from aiohomeconnect.client import Client as HomeConnectClient
|
7
7
|
from homeassistant.const import ATTR_DEVICE_ID as ATTR_DEVICE_ID, Platform as Platform
|
8
8
|
from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as ServiceCall, callback as callback
|
9
|
-
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError, ServiceValidationError as ServiceValidationError
|
9
|
+
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryNotReady as ConfigEntryNotReady, HomeAssistantError as HomeAssistantError, ServiceValidationError as ServiceValidationError
|
10
10
|
from homeassistant.helpers import config_entry_oauth2_flow as config_entry_oauth2_flow
|
11
11
|
from homeassistant.helpers.entity_registry import RegistryEntry as RegistryEntry, async_migrate_entries as async_migrate_entries
|
12
12
|
from homeassistant.helpers.issue_registry import IssueSeverity as IssueSeverity, async_create_issue as async_create_issue, async_delete_issue as async_delete_issue
|
@@ -8,7 +8,7 @@ from ..util import valid_subscribe_topic as valid_subscribe_topic
|
|
8
8
|
from .schema import MQTT_LIGHT_SCHEMA_SCHEMA as MQTT_LIGHT_SCHEMA_SCHEMA
|
9
9
|
from .schema_basic import CONF_BRIGHTNESS_SCALE as CONF_BRIGHTNESS_SCALE, CONF_WHITE_SCALE as CONF_WHITE_SCALE, MQTT_LIGHT_ATTRIBUTES_BLOCKED as MQTT_LIGHT_ATTRIBUTES_BLOCKED
|
10
10
|
from _typeshed import Incomplete
|
11
|
-
from homeassistant.components.light import ATTR_BRIGHTNESS as ATTR_BRIGHTNESS, ATTR_COLOR_MODE as ATTR_COLOR_MODE, ATTR_COLOR_TEMP_KELVIN as ATTR_COLOR_TEMP_KELVIN, ATTR_EFFECT as ATTR_EFFECT, ATTR_FLASH as ATTR_FLASH, ATTR_HS_COLOR as ATTR_HS_COLOR, ATTR_RGBWW_COLOR as ATTR_RGBWW_COLOR, ATTR_RGBW_COLOR as ATTR_RGBW_COLOR, ATTR_RGB_COLOR as ATTR_RGB_COLOR, ATTR_TRANSITION as ATTR_TRANSITION, ATTR_WHITE as ATTR_WHITE, ATTR_XY_COLOR as ATTR_XY_COLOR, ColorMode as ColorMode, DEFAULT_MAX_KELVIN as DEFAULT_MAX_KELVIN, DEFAULT_MIN_KELVIN as DEFAULT_MIN_KELVIN, ENTITY_ID_FORMAT as ENTITY_ID_FORMAT, FLASH_LONG as FLASH_LONG, FLASH_SHORT as FLASH_SHORT, LightEntity as LightEntity, LightEntityFeature as LightEntityFeature, VALID_COLOR_MODES as VALID_COLOR_MODES, brightness_supported as brightness_supported,
|
11
|
+
from homeassistant.components.light import ATTR_BRIGHTNESS as ATTR_BRIGHTNESS, ATTR_COLOR_MODE as ATTR_COLOR_MODE, ATTR_COLOR_TEMP_KELVIN as ATTR_COLOR_TEMP_KELVIN, ATTR_EFFECT as ATTR_EFFECT, ATTR_FLASH as ATTR_FLASH, ATTR_HS_COLOR as ATTR_HS_COLOR, ATTR_RGBWW_COLOR as ATTR_RGBWW_COLOR, ATTR_RGBW_COLOR as ATTR_RGBW_COLOR, ATTR_RGB_COLOR as ATTR_RGB_COLOR, ATTR_TRANSITION as ATTR_TRANSITION, ATTR_WHITE as ATTR_WHITE, ATTR_XY_COLOR as ATTR_XY_COLOR, ColorMode as ColorMode, DEFAULT_MAX_KELVIN as DEFAULT_MAX_KELVIN, DEFAULT_MIN_KELVIN as DEFAULT_MIN_KELVIN, ENTITY_ID_FORMAT as ENTITY_ID_FORMAT, FLASH_LONG as FLASH_LONG, FLASH_SHORT as FLASH_SHORT, LightEntity as LightEntity, LightEntityFeature as LightEntityFeature, VALID_COLOR_MODES as VALID_COLOR_MODES, brightness_supported as brightness_supported, valid_supported_color_modes as valid_supported_color_modes
|
12
12
|
from homeassistant.const import CONF_BRIGHTNESS as CONF_BRIGHTNESS, CONF_COLOR_TEMP as CONF_COLOR_TEMP, CONF_EFFECT as CONF_EFFECT, CONF_HS as CONF_HS, CONF_NAME as CONF_NAME, CONF_OPTIMISTIC as CONF_OPTIMISTIC, CONF_RGB as CONF_RGB, CONF_XY as CONF_XY, STATE_ON as STATE_ON
|
13
13
|
from homeassistant.core import callback as callback
|
14
14
|
from homeassistant.helpers.json import json_dumps as json_dumps
|
@@ -23,7 +23,7 @@ def _is_known_device(device_family: str, device_type: str | None) -> bool: ...
|
|
23
23
|
class OneWireHub:
|
24
24
|
owproxy: protocol._Proxy
|
25
25
|
devices: list[OWDeviceDescription]
|
26
|
-
_version: str
|
26
|
+
_version: str | None
|
27
27
|
_hass: Incomplete
|
28
28
|
_config_entry: Incomplete
|
29
29
|
def __init__(self, hass: HomeAssistant, config_entry: OneWireConfigEntry) -> None: ...
|
{homeassistant_stubs-2025.3.0b8.dist-info → homeassistant_stubs-2025.3.2.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.3.
|
3
|
+
Version: 2025.3.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.3.
|
21
|
+
Requires-Dist: homeassistant==2025.3.2
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
@@ -421,7 +421,7 @@ homeassistant-stubs/components/backup/basic_websocket.pyi,sha256=W7bQLl13RQSPSJ6
|
|
421
421
|
homeassistant-stubs/components/backup/config.pyi,sha256=fpiXOtuA-t-0x1xppO1ghbpBHzL9H09lNFC_f5UCtxM,5749
|
422
422
|
homeassistant-stubs/components/backup/const.pyi,sha256=N3Hb5USpEK0tHJxtqdrgroGNitCuldDGckqVOVk2yX8,308
|
423
423
|
homeassistant-stubs/components/backup/http.pyi,sha256=4BMeB5O1IBqpG5XY02XdfE5K1uFhB6Ob6Aa_YSMwbfY,1613
|
424
|
-
homeassistant-stubs/components/backup/manager.pyi,sha256=
|
424
|
+
homeassistant-stubs/components/backup/manager.pyi,sha256=YjYcBwQwNXnSmN5a9YRHMB4HLGgA8adrNp0PkbfhXGw,14381
|
425
425
|
homeassistant-stubs/components/backup/models.pyi,sha256=mFvNpBmNQ3vOZ4ep4y-1TYDzll8QeQNCx3aYaX36lLg,1212
|
426
426
|
homeassistant-stubs/components/backup/store.pyi,sha256=CTgV9bZqdqSFYc6xrwrWizFVQYOaraG9ZHWAIMnBKi8,1174
|
427
427
|
homeassistant-stubs/components/backup/util.pyi,sha256=0_yUHocSWTk3jPM-GFI-OTikYMCvtiYQzM-9b-pfG3k,4400
|
@@ -639,7 +639,7 @@ homeassistant-stubs/components/cloud/subscription.pyi,sha256=nOeRyqP6TtJyHqYapBZ
|
|
639
639
|
homeassistant-stubs/components/cloud/system_health.pyi,sha256=fz4CdLgufHaNAiGgwh8Ayb6CqbZ7wovH4QTBku8OaFA,406
|
640
640
|
homeassistant-stubs/components/cloud/tts.pyi,sha256=y93PO11IDmdJpRg7cuiOWwmifxbutDuBKUVGL2L8Fw4,3641
|
641
641
|
homeassistant-stubs/components/co2signal/__init__.pyi,sha256=czmmkDdsDii7gYULoyOKDkPqlF4ZMhtx_KUzaRIdTyU,601
|
642
|
-
homeassistant-stubs/components/co2signal/config_flow.pyi,sha256=
|
642
|
+
homeassistant-stubs/components/co2signal/config_flow.pyi,sha256=iC69n-epFBaCfKpa9EoACMy5SH37TjAWqAKVMUaqm_o,1715
|
643
643
|
homeassistant-stubs/components/co2signal/const.pyi,sha256=LApbRjh9urlABUmBAdcgAD8qepdXLb5UMlv-4K--lrk,29
|
644
644
|
homeassistant-stubs/components/co2signal/coordinator.pyi,sha256=ryaHuIMrc1lz2yR0uCZdVkHj3sHgdv_LS-UGTqbwW-Q,1048
|
645
645
|
homeassistant-stubs/components/co2signal/diagnostics.pyi,sha256=2hojC9FpNinpfJst7Xn072DaFtIVTAt9-uBcp-nTJA4,486
|
@@ -1079,8 +1079,8 @@ homeassistant-stubs/components/evil_genius_labs/util.pyi,sha256=jeZJjFUdTJZGQoTy
|
|
1079
1079
|
homeassistant-stubs/components/evohome/__init__.pyi,sha256=OXxRfKFHHpj1oAKp-05o3zyqCOhUsR5Pu3BZCnO3D6Q,1880
|
1080
1080
|
homeassistant-stubs/components/evohome/climate.pyi,sha256=EaSlfRGXID2M8YLF_MECiP8ANhca1LM52qcUnqcov8I,4036
|
1081
1081
|
homeassistant-stubs/components/evohome/const.pyi,sha256=49zFAXmUfkLM8MAs7aK2gihCmZAdlsVaXtss--ryl3U,632
|
1082
|
-
homeassistant-stubs/components/evohome/coordinator.pyi,sha256=
|
1083
|
-
homeassistant-stubs/components/evohome/entity.pyi,sha256=
|
1082
|
+
homeassistant-stubs/components/evohome/coordinator.pyi,sha256=fde3QRGbJMsGtApaYJ247btKz5blzjdnjZAVuzKSM_s,1573
|
1083
|
+
homeassistant-stubs/components/evohome/entity.pyi,sha256=ouDP1N5AQ9OoBe8qaMkb2BbyFjubn62HswzXyxv_3Ek,2074
|
1084
1084
|
homeassistant-stubs/components/evohome/storage.pyi,sha256=tw8Tu33WEbc9AQ-cJKlnslwk77UXnvYYLvN7U6M9Fso,1319
|
1085
1085
|
homeassistant-stubs/components/evohome/water_heater.pyi,sha256=CHtkJKtEyo6uTW9HyEmraOI66Xff2myjxJiFagAXJL4,2036
|
1086
1086
|
homeassistant-stubs/components/faa_delays/__init__.pyi,sha256=ZVxC9sVaf_vRi0yltajeXYJk0wguELukBi50q49Qxbo,475
|
@@ -1379,9 +1379,9 @@ homeassistant-stubs/components/hardware/hardware.pyi,sha256=5JAkwznU-tdca86jvtTs
|
|
1379
1379
|
homeassistant-stubs/components/hardware/models.pyi,sha256=PSCXG1rNXqiYVxX2T5MIW8A2vSGBI63G3z-FW_3wspE,765
|
1380
1380
|
homeassistant-stubs/components/hardware/websocket_api.pyi,sha256=81Ia4cnGrtsnnnBXdz1GhOCFsUD6KxfOsYvloFl3iDY,1166
|
1381
1381
|
homeassistant-stubs/components/heos/__init__.pyi,sha256=Y1bUryR3yttDIeDFsNluFvQrvv_XdpECNecVsKGQOnA,892
|
1382
|
-
homeassistant-stubs/components/heos/config_flow.pyi,sha256=
|
1382
|
+
homeassistant-stubs/components/heos/config_flow.pyi,sha256=YXYAUe_82MGqHDBgtDIbgkuzFEOHhwvCGcYrQjJWdeQ,2018
|
1383
1383
|
homeassistant-stubs/components/heos/const.pyi,sha256=3j4jIelq8Pt0hWteCjdgNBu_8mMT5QUS1pzWNHq8Lu8,200
|
1384
|
-
homeassistant-stubs/components/heos/coordinator.pyi,sha256=
|
1384
|
+
homeassistant-stubs/components/heos/coordinator.pyi,sha256=bPbw21-Fbb__QgJvS8JPerDBqsw_otnlY9mZ5MSi4aw,2703
|
1385
1385
|
homeassistant-stubs/components/heos/diagnostics.pyi,sha256=ftUXZ0IbvZw6xWRnjI04EYrdU7A_MNjvIllcavg_jBY,862
|
1386
1386
|
homeassistant-stubs/components/heos/media_player.pyi,sha256=ehExkk-HlqMu9MT17Y0XORTr9TAISTgUkZS0BMSsyfM,5281
|
1387
1387
|
homeassistant-stubs/components/heos/services.pyi,sha256=WpK310me40_JyP_2WMVULq41AqamYDfZHv2XaCGPc24,908
|
@@ -1406,7 +1406,7 @@ homeassistant-stubs/components/holiday/__init__.pyi,sha256=_Vsl9NyDepWX-wDczm0J2
|
|
1406
1406
|
homeassistant-stubs/components/holiday/calendar.pyi,sha256=nA5wRAfXdFaUxg9l_D3YNuRtQcCk9BGmN0USCnWL0FI,2324
|
1407
1407
|
homeassistant-stubs/components/holiday/config_flow.pyi,sha256=yop7wvMuzNHsEqecCY9KxqlHZ1tl_MwL64J9XxGjyaY,1759
|
1408
1408
|
homeassistant-stubs/components/holiday/const.pyi,sha256=5eAly2wAFUE6WWEm441Fpr3f8E2GQ-yhTks-xWEkVbI,99
|
1409
|
-
homeassistant-stubs/components/home_connect/__init__.pyi,sha256=
|
1409
|
+
homeassistant-stubs/components/home_connect/__init__.pyi,sha256=GdTQD60K1dSOWLLBip5kX8wRgcniiPchbLlHSFH_D0k,3190
|
1410
1410
|
homeassistant-stubs/components/home_connect/api.pyi,sha256=Gyz5BzNa5VRgHhWkRAOmLaROnssomEMdKBmcS37dCQk,568
|
1411
1411
|
homeassistant-stubs/components/home_connect/application_credentials.pyi,sha256=Hra7BGzFBCV4iwzzb0E2x0pEzZCctL7V-Y3mSqXmvWs,257
|
1412
1412
|
homeassistant-stubs/components/home_connect/binary_sensor.pyi,sha256=Awu4R78hWKYLB3zbPKqzVWapmr8vOgHNQ1mODzBnIKk,2907
|
@@ -2243,7 +2243,7 @@ homeassistant-stubs/components/mqtt/water_heater.pyi,sha256=SxJQEEAagSu7n46UHmGx
|
|
2243
2243
|
homeassistant-stubs/components/mqtt/light/__init__.pyi,sha256=8HQtSOpQLut1O4XjiUs7k0LHV2q8kdchlUx8XgPM2VE,1551
|
2244
2244
|
homeassistant-stubs/components/mqtt/light/schema.pyi,sha256=uWMGNFfSJQ7x4bYFxOVLTa2GCgkVv6NHSt5fw0osgpA,118
|
2245
2245
|
homeassistant-stubs/components/mqtt/light/schema_basic.pyi,sha256=SRHNft9C92nFbDkbDkKHG0YHqsX9csOJXDesGfe2ECs,7021
|
2246
|
-
homeassistant-stubs/components/mqtt/light/schema_json.pyi,sha256=
|
2246
|
+
homeassistant-stubs/components/mqtt/light/schema_json.pyi,sha256=5ZeZQ6Ul20F2La0Tr1nnBYdUcUHzOcD7Rge2TSsmsqQ,4688
|
2247
2247
|
homeassistant-stubs/components/mqtt/light/schema_template.pyi,sha256=JfZ9G9eXTQCOS6D2AciIyrnQFLDEn-yWKsP6CJAuN6k,3918
|
2248
2248
|
homeassistant-stubs/components/music_assistant/__init__.pyi,sha256=ZpNo96CqBU-KbvnetFYxK85m5jkHhSbD-rbfeTNqZmA,1945
|
2249
2249
|
homeassistant-stubs/components/music_assistant/actions.pyi,sha256=NHEKTK-bOD54f7FDOPh_PnFinvXrHsfN26QNDANryds,2038
|
@@ -2449,7 +2449,7 @@ homeassistant-stubs/components/onewire/const.pyi,sha256=iJT9K9Y-oA0yNBTf7FW75xWj
|
|
2449
2449
|
homeassistant-stubs/components/onewire/diagnostics.pyi,sha256=yG38Cu-ccHGhfkwFuERkXxY6tvY3JQIaFS8mWNw7IsE,466
|
2450
2450
|
homeassistant-stubs/components/onewire/entity.pyi,sha256=0fgAZAqoc_sOtynwFq3v7RKCYyXwRhpSH_DwvFTLdEs,1249
|
2451
2451
|
homeassistant-stubs/components/onewire/model.pyi,sha256=HN9hf22se9ZPrI4rabhqKMnQ8NZIV7E0iYZzICWzaCU,239
|
2452
|
-
homeassistant-stubs/components/onewire/onewirehub.pyi,sha256=
|
2452
|
+
homeassistant-stubs/components/onewire/onewirehub.pyi,sha256=lMn555bnMVQzvPiZCzfgiSPH4AGWDdecNsUwqtoEa6I,2020
|
2453
2453
|
homeassistant-stubs/components/onewire/select.pyi,sha256=bb-tMnPdbSrYj9bjAjeQD4eiGX3F1awsW7czkWX6PyU,1608
|
2454
2454
|
homeassistant-stubs/components/onewire/sensor.pyi,sha256=xCFPGP6LEZ4gieO4VuyAva1zuF2WLfFq1JgSen555tA,2785
|
2455
2455
|
homeassistant-stubs/components/onewire/switch.pyi,sha256=S6vqytDcTXf0l9o7oo-JxojnFGJgl3xmZJpR0cSykdA,1938
|
@@ -4079,7 +4079,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
4079
4079
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
4080
4080
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=9MJS3AZNCemqAEU41KVJox1f16OceP64SNXE1-Z37kU,4117
|
4081
4081
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=EmJiT8WnVUHa5dkbYzXtWzu5mhO1YG5bBnEAIF0XLAU,665
|
4082
|
-
homeassistant_stubs-2025.3.
|
4083
|
-
homeassistant_stubs-2025.3.
|
4084
|
-
homeassistant_stubs-2025.3.
|
4085
|
-
homeassistant_stubs-2025.3.
|
4082
|
+
homeassistant_stubs-2025.3.2.dist-info/METADATA,sha256=hK8aK3g-dgHBg55VcX0U4oNyXl0z9UiGyqxSiyOW8eY,2952
|
4083
|
+
homeassistant_stubs-2025.3.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4084
|
+
homeassistant_stubs-2025.3.2.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4085
|
+
homeassistant_stubs-2025.3.2.dist-info/RECORD,,
|
File without changes
|
{homeassistant_stubs-2025.3.0b8.dist-info → homeassistant_stubs-2025.3.2.dist-info}/licenses/LICENSE
RENAMED
File without changes
|