homeassistant-stubs 2024.1.0b8__py3-none-any.whl → 2024.1.1__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.
Files changed (38) hide show
  1. homeassistant-stubs/components/airthings_ble/__init__.pyi +16 -0
  2. homeassistant-stubs/components/airthings_ble/config_flow.pyi +33 -0
  3. homeassistant-stubs/components/airthings_ble/const.pyi +5 -0
  4. homeassistant-stubs/components/airthings_ble/sensor.pyi +30 -0
  5. homeassistant-stubs/components/alarm_control_panel/__init__.pyi +5 -3
  6. homeassistant-stubs/components/alarm_control_panel/const.pyi +4 -3
  7. homeassistant-stubs/components/automation/__init__.pyi +5 -3
  8. homeassistant-stubs/components/binary_sensor/__init__.pyi +5 -3
  9. homeassistant-stubs/components/camera/__init__.pyi +5 -3
  10. homeassistant-stubs/components/camera/const.pyi +2 -1
  11. homeassistant-stubs/components/climate/__init__.pyi +5 -3
  12. homeassistant-stubs/components/climate/const.pyi +2 -1
  13. homeassistant-stubs/components/cloud/__init__.pyi +1 -0
  14. homeassistant-stubs/components/cover/__init__.pyi +5 -3
  15. homeassistant-stubs/components/device_tracker/__init__.pyi +5 -4
  16. homeassistant-stubs/components/device_tracker/const.pyi +4 -3
  17. homeassistant-stubs/components/fan/__init__.pyi +5 -3
  18. homeassistant-stubs/components/fritz/common.pyi +1 -0
  19. homeassistant-stubs/components/fritz/switch.pyi +5 -5
  20. homeassistant-stubs/components/lock/__init__.pyi +5 -3
  21. homeassistant-stubs/components/number/const.pyi +4 -3
  22. homeassistant-stubs/components/remote/__init__.pyi +5 -3
  23. homeassistant-stubs/components/sensor/const.pyi +4 -3
  24. homeassistant-stubs/components/shelly/config_flow.pyi +1 -1
  25. homeassistant-stubs/components/shelly/const.pyi +1 -0
  26. homeassistant-stubs/components/shelly/coordinator.pyi +1 -1
  27. homeassistant-stubs/components/shelly/utils.pyi +1 -1
  28. homeassistant-stubs/components/switch/__init__.pyi +5 -3
  29. homeassistant-stubs/components/water_heater/__init__.pyi +5 -3
  30. homeassistant-stubs/const.pyi +10 -10
  31. homeassistant-stubs/core.pyi +5 -4
  32. homeassistant-stubs/data_entry_flow.pyi +5 -3
  33. homeassistant-stubs/helpers/deprecation.pyi +2 -5
  34. homeassistant-stubs/helpers/device_registry.pyi +5 -3
  35. {homeassistant_stubs-2024.1.0b8.dist-info → homeassistant_stubs-2024.1.1.dist-info}/METADATA +2 -2
  36. {homeassistant_stubs-2024.1.0b8.dist-info → homeassistant_stubs-2024.1.1.dist-info}/RECORD +38 -34
  37. {homeassistant_stubs-2024.1.0b8.dist-info → homeassistant_stubs-2024.1.1.dist-info}/LICENSE +0 -0
  38. {homeassistant_stubs-2024.1.0b8.dist-info → homeassistant_stubs-2024.1.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,16 @@
1
+ from .const import DEFAULT_SCAN_INTERVAL as DEFAULT_SCAN_INTERVAL, DOMAIN as DOMAIN
2
+ from _typeshed import Incomplete
3
+ from airthings_ble import AirthingsDevice as AirthingsDevice
4
+ from homeassistant.components import bluetooth as bluetooth
5
+ from homeassistant.config_entries import ConfigEntry as ConfigEntry
6
+ from homeassistant.const import Platform as Platform
7
+ from homeassistant.core import HomeAssistant as HomeAssistant
8
+ from homeassistant.exceptions import ConfigEntryNotReady as ConfigEntryNotReady
9
+ from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
10
+ from homeassistant.util.unit_system import METRIC_SYSTEM as METRIC_SYSTEM
11
+
12
+ PLATFORMS: list[Platform]
13
+ _LOGGER: Incomplete
14
+
15
+ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
16
+ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
@@ -0,0 +1,33 @@
1
+ import dataclasses
2
+ from .const import DOMAIN as DOMAIN, MFCT_ID as MFCT_ID
3
+ from _typeshed import Incomplete
4
+ from airthings_ble import AirthingsDevice as AirthingsDevice
5
+ from homeassistant.components import bluetooth as bluetooth
6
+ from homeassistant.components.bluetooth import BluetoothServiceInfo as BluetoothServiceInfo, async_discovered_service_info as async_discovered_service_info
7
+ from homeassistant.config_entries import ConfigFlow as ConfigFlow
8
+ from homeassistant.const import CONF_ADDRESS as CONF_ADDRESS
9
+ from homeassistant.data_entry_flow import FlowResult as FlowResult
10
+ from typing import Any
11
+
12
+ _LOGGER: Incomplete
13
+
14
+ @dataclasses.dataclass
15
+ class Discovery:
16
+ name: str
17
+ discovery_info: BluetoothServiceInfo
18
+ device: AirthingsDevice
19
+ def __init__(self, name, discovery_info, device) -> None: ...
20
+
21
+ def get_name(device: AirthingsDevice) -> str: ...
22
+
23
+ class AirthingsDeviceUpdateError(Exception): ...
24
+
25
+ class AirthingsConfigFlow(ConfigFlow, domain=DOMAIN):
26
+ VERSION: int
27
+ _discovered_device: Incomplete
28
+ _discovered_devices: Incomplete
29
+ def __init__(self) -> None: ...
30
+ async def _get_device_data(self, discovery_info: BluetoothServiceInfo) -> AirthingsDevice: ...
31
+ async def async_step_bluetooth(self, discovery_info: BluetoothServiceInfo) -> FlowResult: ...
32
+ async def async_step_bluetooth_confirm(self, user_input: dict[str, Any] | None = None) -> FlowResult: ...
33
+ async def async_step_user(self, user_input: dict[str, Any] | None = None) -> FlowResult: ...
@@ -0,0 +1,5 @@
1
+ DOMAIN: str
2
+ MFCT_ID: int
3
+ VOLUME_BECQUEREL: str
4
+ VOLUME_PICOCURIE: str
5
+ DEFAULT_SCAN_INTERVAL: int
@@ -0,0 +1,30 @@
1
+ from .const import DOMAIN as DOMAIN, VOLUME_BECQUEREL as VOLUME_BECQUEREL, VOLUME_PICOCURIE as VOLUME_PICOCURIE
2
+ from _typeshed import Incomplete
3
+ from airthings_ble import AirthingsDevice
4
+ from homeassistant.components.sensor import SensorDeviceClass as SensorDeviceClass, SensorEntity as SensorEntity, SensorEntityDescription as SensorEntityDescription, SensorStateClass as SensorStateClass
5
+ from homeassistant.config_entries import ConfigEntry as ConfigEntry
6
+ from homeassistant.const import CONCENTRATION_PARTS_PER_BILLION as CONCENTRATION_PARTS_PER_BILLION, CONCENTRATION_PARTS_PER_MILLION as CONCENTRATION_PARTS_PER_MILLION, EntityCategory as EntityCategory, LIGHT_LUX as LIGHT_LUX, PERCENTAGE as PERCENTAGE, Platform as Platform, UnitOfPressure as UnitOfPressure, UnitOfTemperature as UnitOfTemperature
7
+ from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
8
+ from homeassistant.helpers.device_registry import CONNECTION_BLUETOOTH as CONNECTION_BLUETOOTH, DeviceInfo as DeviceInfo
9
+ from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
10
+ from homeassistant.helpers.entity_registry import RegistryEntry as RegistryEntry, async_entries_for_device as async_entries_for_device
11
+ from homeassistant.helpers.typing import StateType as StateType
12
+ from homeassistant.helpers.update_coordinator import CoordinatorEntity as CoordinatorEntity, DataUpdateCoordinator as DataUpdateCoordinator
13
+ from homeassistant.util.unit_system import METRIC_SYSTEM as METRIC_SYSTEM
14
+
15
+ _LOGGER: Incomplete
16
+ SENSORS_MAPPING_TEMPLATE: dict[str, SensorEntityDescription]
17
+
18
+ def async_migrate(hass: HomeAssistant, address: str, sensor_name: str) -> None: ...
19
+ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
20
+
21
+ class AirthingsSensor(CoordinatorEntity[DataUpdateCoordinator[AirthingsDevice]], SensorEntity):
22
+ _attr_has_entity_name: bool
23
+ entity_description: Incomplete
24
+ _attr_unique_id: Incomplete
25
+ _attr_device_info: Incomplete
26
+ def __init__(self, coordinator: DataUpdateCoordinator[AirthingsDevice], airthings_device: AirthingsDevice, entity_description: SensorEntityDescription) -> None: ...
27
+ @property
28
+ def available(self) -> bool: ...
29
+ @property
30
+ def native_value(self) -> StateType: ...
@@ -5,14 +5,12 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry
5
5
  from homeassistant.const import ATTR_CODE as ATTR_CODE, ATTR_CODE_FORMAT as ATTR_CODE_FORMAT, SERVICE_ALARM_ARM_AWAY as SERVICE_ALARM_ARM_AWAY, SERVICE_ALARM_ARM_CUSTOM_BYPASS as SERVICE_ALARM_ARM_CUSTOM_BYPASS, SERVICE_ALARM_ARM_HOME as SERVICE_ALARM_ARM_HOME, SERVICE_ALARM_ARM_NIGHT as SERVICE_ALARM_ARM_NIGHT, SERVICE_ALARM_ARM_VACATION as SERVICE_ALARM_ARM_VACATION, SERVICE_ALARM_DISARM as SERVICE_ALARM_DISARM, SERVICE_ALARM_TRIGGER as SERVICE_ALARM_TRIGGER
6
6
  from homeassistant.core import HomeAssistant as HomeAssistant
7
7
  from homeassistant.helpers.config_validation import make_entity_service_schema as make_entity_service_schema
8
- from homeassistant.helpers.deprecation import check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
8
+ from homeassistant.helpers.deprecation import all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
9
9
  from homeassistant.helpers.entity import Entity as Entity, EntityDescription as EntityDescription
10
10
  from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
11
11
  from homeassistant.helpers.typing import ConfigType as ConfigType
12
12
  from typing import Any, Final
13
13
 
14
- __getattr__: Incomplete
15
- __dir__: Incomplete
16
14
  _LOGGER: Final[Incomplete]
17
15
  SCAN_INTERVAL: Final[Incomplete]
18
16
  ENTITY_ID_FORMAT: Final[Incomplete]
@@ -60,3 +58,7 @@ class AlarmControlPanelEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_A
60
58
  def supported_features(self) -> AlarmControlPanelEntityFeature: ...
61
59
  @property
62
60
  def state_attributes(self) -> dict[str, Any] | None: ...
61
+
62
+ __getattr__: Incomplete
63
+ __dir__: Incomplete
64
+ __all__: Incomplete
@@ -1,6 +1,6 @@
1
1
  from _typeshed import Incomplete
2
2
  from enum import IntFlag, StrEnum
3
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
3
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
4
4
  from typing import Final
5
5
 
6
6
  DOMAIN: Final[str]
@@ -28,8 +28,6 @@ _DEPRECATED_SUPPORT_ALARM_ARM_NIGHT: Final[Incomplete]
28
28
  _DEPRECATED_SUPPORT_ALARM_TRIGGER: Final[Incomplete]
29
29
  _DEPRECATED_SUPPORT_ALARM_ARM_CUSTOM_BYPASS: Final[Incomplete]
30
30
  _DEPRECATED_SUPPORT_ALARM_ARM_VACATION: Final[Incomplete]
31
- __getattr__: Incomplete
32
- __dir__: Incomplete
33
31
  CONDITION_TRIGGERED: Final[str]
34
32
  CONDITION_DISARMED: Final[str]
35
33
  CONDITION_ARMED_HOME: Final[str]
@@ -37,3 +35,6 @@ CONDITION_ARMED_AWAY: Final[str]
37
35
  CONDITION_ARMED_NIGHT: Final[str]
38
36
  CONDITION_ARMED_VACATION: Final[str]
39
37
  CONDITION_ARMED_CUSTOM_BYPASS: Final[str]
38
+ __getattr__: Incomplete
39
+ __dir__: Incomplete
40
+ __all__: Incomplete
@@ -13,7 +13,7 @@ from homeassistant.const import ATTR_ENTITY_ID as ATTR_ENTITY_ID, ATTR_MODE as A
13
13
  from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, Context as Context, CoreState as CoreState, Event as Event, HomeAssistant as HomeAssistant, ServiceCall as ServiceCall, callback as callback, split_entity_id as split_entity_id, valid_entity_id as valid_entity_id
14
14
  from homeassistant.exceptions import ConditionError as ConditionError, ConditionErrorContainer as ConditionErrorContainer, ConditionErrorIndex as ConditionErrorIndex, HomeAssistantError as HomeAssistantError, ServiceNotFound as ServiceNotFound, TemplateError as TemplateError
15
15
  from homeassistant.helpers import condition as condition
16
- from homeassistant.helpers.deprecation import DeprecatedConstant as DeprecatedConstant, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
16
+ from homeassistant.helpers.deprecation import DeprecatedConstant as DeprecatedConstant, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
17
17
  from homeassistant.helpers.entity import ToggleEntity as ToggleEntity
18
18
  from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
19
19
  from homeassistant.helpers.issue_registry import IssueSeverity as IssueSeverity, async_create_issue as async_create_issue
@@ -46,8 +46,6 @@ class IfAction(Protocol):
46
46
  _DEPRECATED_AutomationActionType: Incomplete
47
47
  _DEPRECATED_AutomationTriggerData: Incomplete
48
48
  _DEPRECATED_AutomationTriggerInfo: Incomplete
49
- __getattr__: Incomplete
50
- __dir__: Incomplete
51
49
 
52
50
  def is_on(hass: HomeAssistant, entity_id: str) -> bool: ...
53
51
  def _automations_with_x(hass: HomeAssistant, referenced_id: str, property_name: str) -> list[str]: ...
@@ -162,3 +160,7 @@ async def _async_process_if(hass: HomeAssistant, name: str, config: dict[str, An
162
160
  def _trigger_extract_devices(trigger_conf: dict) -> list[str]: ...
163
161
  def _trigger_extract_entities(trigger_conf: dict) -> list[str]: ...
164
162
  def websocket_config(hass: HomeAssistant, connection: websocket_api.ActiveConnection, msg: dict[str, Any]) -> None: ...
163
+
164
+ __getattr__: Incomplete
165
+ __dir__: Incomplete
166
+ __all__: Incomplete
@@ -6,7 +6,7 @@ from homeassistant.const import EntityCategory as EntityCategory, STATE_OFF as S
6
6
  from homeassistant.core import HomeAssistant as HomeAssistant
7
7
  from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
8
8
  from homeassistant.helpers.config_validation import PLATFORM_SCHEMA as PLATFORM_SCHEMA, PLATFORM_SCHEMA_BASE as PLATFORM_SCHEMA_BASE
9
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
9
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
10
10
  from homeassistant.helpers.entity import Entity as Entity, EntityDescription as EntityDescription
11
11
  from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
12
12
  from homeassistant.helpers.typing import ConfigType as ConfigType
@@ -77,8 +77,6 @@ _DEPRECATED_DEVICE_CLASS_TAMPER: Incomplete
77
77
  _DEPRECATED_DEVICE_CLASS_UPDATE: Incomplete
78
78
  _DEPRECATED_DEVICE_CLASS_VIBRATION: Incomplete
79
79
  _DEPRECATED_DEVICE_CLASS_WINDOW: Incomplete
80
- __getattr__: Incomplete
81
- __dir__: Incomplete
82
80
 
83
81
  async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
84
82
  async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
@@ -104,3 +102,7 @@ class BinarySensorEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_)
104
102
  def is_on(self) -> bool | None: ...
105
103
  @property
106
104
  def state(self) -> Literal['on', 'off'] | None: ...
105
+
106
+ __getattr__: Incomplete
107
+ __dir__: Incomplete
108
+ __all__: Incomplete
@@ -16,7 +16,7 @@ from homeassistant.const import ATTR_ENTITY_ID as ATTR_ENTITY_ID, CONF_FILENAME
16
16
  from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant, ServiceCall as ServiceCall, callback as callback
17
17
  from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
18
18
  from homeassistant.helpers.config_validation import PLATFORM_SCHEMA as PLATFORM_SCHEMA, PLATFORM_SCHEMA_BASE as PLATFORM_SCHEMA_BASE
19
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
19
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
20
20
  from homeassistant.helpers.entity import Entity as Entity, EntityDescription as EntityDescription
21
21
  from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
22
22
  from homeassistant.helpers.event import async_track_time_interval as async_track_time_interval
@@ -46,8 +46,6 @@ class CameraEntityFeature(IntFlag):
46
46
 
47
47
  _DEPRECATED_SUPPORT_ON_OFF: Final[Incomplete]
48
48
  _DEPRECATED_SUPPORT_STREAM: Final[Incomplete]
49
- __getattr__: Incomplete
50
- __dir__: Incomplete
51
49
  RTSP_PREFIXES: Incomplete
52
50
  DEFAULT_CONTENT_TYPE: Final[str]
53
51
  ENTITY_IMAGE_URL: Final[str]
@@ -187,3 +185,7 @@ async def async_handle_snapshot_service(camera: Camera, service_call: ServiceCal
187
185
  async def async_handle_play_stream_service(camera: Camera, service_call: ServiceCall) -> None: ...
188
186
  async def _async_stream_endpoint_url(hass: HomeAssistant, camera: Camera, fmt: str) -> str: ...
189
187
  async def async_handle_record_service(camera: Camera, service_call: ServiceCall) -> None: ...
188
+
189
+ __getattr__: Incomplete
190
+ __dir__: Incomplete
191
+ __all__: Incomplete
@@ -1,6 +1,6 @@
1
1
  from _typeshed import Incomplete
2
2
  from enum import StrEnum
3
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
3
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
4
4
  from typing import Final
5
5
 
6
6
  DOMAIN: Final[str]
@@ -22,3 +22,4 @@ _DEPRECATED_STREAM_TYPE_HLS: Incomplete
22
22
  _DEPRECATED_STREAM_TYPE_WEB_RTC: Incomplete
23
23
  __getattr__: Incomplete
24
24
  __dir__: Incomplete
25
+ __all__: Incomplete
@@ -6,7 +6,7 @@ from homeassistant.const import ATTR_TEMPERATURE as ATTR_TEMPERATURE, PRECISION_
6
6
  from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as ServiceCall, callback as callback
7
7
  from homeassistant.exceptions import ServiceValidationError as ServiceValidationError
8
8
  from homeassistant.helpers.config_validation import PLATFORM_SCHEMA as PLATFORM_SCHEMA, PLATFORM_SCHEMA_BASE as PLATFORM_SCHEMA_BASE, make_entity_service_schema as make_entity_service_schema
9
- from homeassistant.helpers.deprecation import check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
9
+ from homeassistant.helpers.deprecation import all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
10
10
  from homeassistant.helpers.entity import Entity as Entity, EntityDescription as EntityDescription
11
11
  from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
12
12
  from homeassistant.helpers.typing import ConfigType as ConfigType
@@ -22,8 +22,6 @@ SCAN_INTERVAL: Incomplete
22
22
  CONVERTIBLE_ATTRIBUTE: Incomplete
23
23
  _LOGGER: Incomplete
24
24
  SET_TEMPERATURE_SCHEMA: Incomplete
25
- __getattr__: Incomplete
26
- __dir__: Incomplete
27
25
 
28
26
  async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
29
27
  async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: ...
@@ -143,3 +141,7 @@ class ClimateEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
143
141
 
144
142
  async def async_service_aux_heat(entity: ClimateEntity, service_call: ServiceCall) -> None: ...
145
143
  async def async_service_temperature_set(entity: ClimateEntity, service_call: ServiceCall) -> None: ...
144
+
145
+ __getattr__: Incomplete
146
+ __dir__: Incomplete
147
+ __all__: Incomplete
@@ -1,6 +1,6 @@
1
1
  from _typeshed import Incomplete
2
2
  from enum import IntFlag, StrEnum
3
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
3
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
4
4
 
5
5
  class HVACMode(StrEnum):
6
6
  OFF: str
@@ -110,3 +110,4 @@ _DEPRECATED_SUPPORT_SWING_MODE: Incomplete
110
110
  _DEPRECATED_SUPPORT_AUX_HEAT: Incomplete
111
111
  __getattr__: Incomplete
112
112
  __dir__: Incomplete
113
+ __all__: Incomplete
@@ -46,6 +46,7 @@ def async_is_logged_in(hass: HomeAssistant) -> bool: ...
46
46
  def async_is_connected(hass: HomeAssistant) -> bool: ...
47
47
  def async_listen_connection_change(hass: HomeAssistant, target: Callable[[CloudConnectionState], Awaitable[None] | None]) -> Callable[[], None]: ...
48
48
  def async_active_subscription(hass: HomeAssistant) -> bool: ...
49
+ async def async_get_or_create_cloudhook(hass: HomeAssistant, webhook_id: str) -> str: ...
49
50
  async def async_create_cloudhook(hass: HomeAssistant, webhook_id: str) -> str: ...
50
51
  async def async_delete_cloudhook(hass: HomeAssistant, webhook_id: str) -> None: ...
51
52
  def async_remote_ui_url(hass: HomeAssistant) -> str: ...
@@ -6,7 +6,7 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry
6
6
  from homeassistant.const import SERVICE_CLOSE_COVER as SERVICE_CLOSE_COVER, SERVICE_CLOSE_COVER_TILT as SERVICE_CLOSE_COVER_TILT, SERVICE_OPEN_COVER as SERVICE_OPEN_COVER, SERVICE_OPEN_COVER_TILT as SERVICE_OPEN_COVER_TILT, SERVICE_SET_COVER_POSITION as SERVICE_SET_COVER_POSITION, SERVICE_SET_COVER_TILT_POSITION as SERVICE_SET_COVER_TILT_POSITION, SERVICE_STOP_COVER as SERVICE_STOP_COVER, SERVICE_STOP_COVER_TILT as SERVICE_STOP_COVER_TILT, SERVICE_TOGGLE as SERVICE_TOGGLE, SERVICE_TOGGLE_COVER_TILT as SERVICE_TOGGLE_COVER_TILT, STATE_CLOSED as STATE_CLOSED, STATE_CLOSING as STATE_CLOSING, STATE_OPEN as STATE_OPEN, STATE_OPENING as STATE_OPENING
7
7
  from homeassistant.core import HomeAssistant as HomeAssistant
8
8
  from homeassistant.helpers.config_validation import PLATFORM_SCHEMA as PLATFORM_SCHEMA, PLATFORM_SCHEMA_BASE as PLATFORM_SCHEMA_BASE
9
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
9
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
10
10
  from homeassistant.helpers.entity import Entity as Entity, EntityDescription as EntityDescription
11
11
  from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
12
12
  from homeassistant.helpers.typing import ConfigType as ConfigType
@@ -63,8 +63,6 @@ _DEPRECATED_SUPPORT_OPEN_TILT: Incomplete
63
63
  _DEPRECATED_SUPPORT_CLOSE_TILT: Incomplete
64
64
  _DEPRECATED_SUPPORT_STOP_TILT: Incomplete
65
65
  _DEPRECATED_SUPPORT_SET_TILT_POSITION: Incomplete
66
- __getattr__: Incomplete
67
- __dir__: Incomplete
68
66
  ATTR_CURRENT_POSITION: str
69
67
  ATTR_CURRENT_TILT_POSITION: str
70
68
  ATTR_POSITION: str
@@ -132,3 +130,7 @@ class CoverEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
132
130
  def toggle_tilt(self, **kwargs: Any) -> None: ...
133
131
  async def async_toggle_tilt(self, **kwargs: Any) -> None: ...
134
132
  def _get_toggle_function(self, fns: dict[str, Callable[_P, _R]]) -> Callable[_P, _R]: ...
133
+
134
+ __getattr__: Incomplete
135
+ __dir__: Incomplete
136
+ __all__: Incomplete
@@ -4,12 +4,13 @@ from .legacy import AsyncSeeCallback as AsyncSeeCallback, DeviceScanner as Devic
4
4
  from _typeshed import Incomplete
5
5
  from homeassistant.const import ATTR_GPS_ACCURACY as ATTR_GPS_ACCURACY, STATE_HOME as STATE_HOME
6
6
  from homeassistant.core import HomeAssistant as HomeAssistant
7
- from homeassistant.helpers.deprecation import check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
7
+ from homeassistant.helpers.deprecation import all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
8
8
  from homeassistant.helpers.typing import ConfigType as ConfigType
9
9
  from homeassistant.loader import bind_hass as bind_hass
10
10
 
11
- __getattr__: Incomplete
12
- __dir__: Incomplete
13
-
14
11
  def is_on(hass: HomeAssistant, entity_id: str) -> bool: ...
15
12
  async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
13
+
14
+ __getattr__: Incomplete
15
+ __dir__: Incomplete
16
+ __all__: Incomplete
@@ -1,6 +1,6 @@
1
1
  from _typeshed import Incomplete
2
2
  from enum import StrEnum
3
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
3
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
4
4
  from typing import Final
5
5
 
6
6
  LOGGER: Final[Incomplete]
@@ -19,8 +19,6 @@ _DEPRECATED_SOURCE_TYPE_GPS: Final[Incomplete]
19
19
  _DEPRECATED_SOURCE_TYPE_ROUTER: Final[Incomplete]
20
20
  _DEPRECATED_SOURCE_TYPE_BLUETOOTH: Final[Incomplete]
21
21
  _DEPRECATED_SOURCE_TYPE_BLUETOOTH_LE: Final[Incomplete]
22
- __getattr__: Incomplete
23
- __dir__: Incomplete
24
22
  CONF_SCAN_INTERVAL: Final[str]
25
23
  SCAN_INTERVAL: Final[Incomplete]
26
24
  CONF_TRACK_NEW: Final[str]
@@ -39,3 +37,6 @@ ATTR_SOURCE_TYPE: Final[str]
39
37
  ATTR_CONSIDER_HOME: Final[str]
40
38
  ATTR_IP: Final[str]
41
39
  CONNECTED_DEVICE_REGISTERED: Final[str]
40
+ __getattr__: Incomplete
41
+ __dir__: Incomplete
42
+ __all__: Incomplete
@@ -6,7 +6,7 @@ from homeassistant.const import SERVICE_TOGGLE as SERVICE_TOGGLE, SERVICE_TURN_O
6
6
  from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
7
7
  from homeassistant.exceptions import ServiceValidationError as ServiceValidationError
8
8
  from homeassistant.helpers.config_validation import PLATFORM_SCHEMA as PLATFORM_SCHEMA, PLATFORM_SCHEMA_BASE as PLATFORM_SCHEMA_BASE
9
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
9
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
10
10
  from homeassistant.helpers.entity import ToggleEntity as ToggleEntity, ToggleEntityDescription as ToggleEntityDescription
11
11
  from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
12
12
  from homeassistant.helpers.typing import ConfigType as ConfigType
@@ -29,8 +29,6 @@ _DEPRECATED_SUPPORT_SET_SPEED: Incomplete
29
29
  _DEPRECATED_SUPPORT_OSCILLATE: Incomplete
30
30
  _DEPRECATED_SUPPORT_DIRECTION: Incomplete
31
31
  _DEPRECATED_SUPPORT_PRESET_MODE: Incomplete
32
- __getattr__: Incomplete
33
- __dir__: Incomplete
34
32
  SERVICE_INCREASE_SPEED: str
35
33
  SERVICE_DECREASE_SPEED: str
36
34
  SERVICE_OSCILLATE: str
@@ -110,3 +108,7 @@ class FanEntity(ToggleEntity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
110
108
  def preset_mode(self) -> str | None: ...
111
109
  @cached_property
112
110
  def preset_modes(self) -> list[str] | None: ...
111
+
112
+ __getattr__: Incomplete
113
+ __dir__: Incomplete
114
+ __all__: Incomplete
@@ -194,6 +194,7 @@ class SwitchInfo(TypedDict):
194
194
  type: str
195
195
  callback_update: Callable
196
196
  callback_switch: Callable
197
+ init_state: bool
197
198
 
198
199
  class FritzBoxBaseEntity:
199
200
  _avm_wrapper: Incomplete
@@ -39,14 +39,14 @@ class FritzBoxBaseCoordinatorSwitch(CoordinatorEntity[AvmWrapper], SwitchEntity)
39
39
  async def async_turn_on(self, **kwargs: Any) -> None: ...
40
40
  async def async_turn_off(self, **kwargs: Any) -> None: ...
41
41
 
42
- class FritzBoxBaseSwitch(FritzBoxBaseEntity):
43
- _attr_is_on: bool | None
42
+ class FritzBoxBaseSwitch(FritzBoxBaseEntity, SwitchEntity):
44
43
  _description: Incomplete
45
44
  _friendly_name: Incomplete
46
45
  _icon: Incomplete
47
46
  _type: Incomplete
48
47
  _update: Incomplete
49
48
  _switch: Incomplete
49
+ _attr_is_on: Incomplete
50
50
  _name: Incomplete
51
51
  _unique_id: Incomplete
52
52
  _attributes: Incomplete
@@ -67,7 +67,7 @@ class FritzBoxBaseSwitch(FritzBoxBaseEntity):
67
67
  async def async_turn_off(self, **kwargs: Any) -> None: ...
68
68
  async def _async_handle_turn_on_off(self, turn_on: bool) -> None: ...
69
69
 
70
- class FritzBoxPortSwitch(FritzBoxBaseSwitch, SwitchEntity):
70
+ class FritzBoxPortSwitch(FritzBoxBaseSwitch):
71
71
  _avm_wrapper: Incomplete
72
72
  _attributes: Incomplete
73
73
  connection_type: Incomplete
@@ -108,12 +108,12 @@ class FritzBoxProfileSwitch(FritzDeviceBase, SwitchEntity):
108
108
  async def async_turn_off(self, **kwargs: Any) -> None: ...
109
109
  async def _async_handle_turn_on_off(self, turn_on: bool) -> bool: ...
110
110
 
111
- class FritzBoxWifiSwitch(FritzBoxBaseSwitch, SwitchEntity):
111
+ class FritzBoxWifiSwitch(FritzBoxBaseSwitch):
112
112
  _avm_wrapper: Incomplete
113
113
  _attributes: Incomplete
114
114
  _attr_entity_category: Incomplete
115
115
  _network_num: Incomplete
116
- def __init__(self, avm_wrapper: AvmWrapper, device_friendly_name: str, network_num: int, network_name: str) -> None: ...
116
+ def __init__(self, avm_wrapper: AvmWrapper, device_friendly_name: str, network_num: int, network_data: dict) -> None: ...
117
117
  _is_available: bool
118
118
  _attr_is_on: Incomplete
119
119
  async def _async_fetch_update(self) -> None: ...
@@ -7,7 +7,7 @@ from homeassistant.const import ATTR_CODE as ATTR_CODE, ATTR_CODE_FORMAT as ATTR
7
7
  from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
8
8
  from homeassistant.exceptions import ServiceValidationError as ServiceValidationError
9
9
  from homeassistant.helpers.config_validation import PLATFORM_SCHEMA as PLATFORM_SCHEMA, PLATFORM_SCHEMA_BASE as PLATFORM_SCHEMA_BASE, make_entity_service_schema as make_entity_service_schema
10
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
10
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
11
11
  from homeassistant.helpers.entity import Entity as Entity, EntityDescription as EntityDescription
12
12
  from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
13
13
  from homeassistant.helpers.typing import ConfigType as ConfigType, StateType as StateType
@@ -26,8 +26,6 @@ class LockEntityFeature(IntFlag):
26
26
  OPEN: int
27
27
 
28
28
  _DEPRECATED_SUPPORT_OPEN: Incomplete
29
- __getattr__: Incomplete
30
- __dir__: Incomplete
31
29
  PROP_TO_ATTR: Incomplete
32
30
 
33
31
  async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
@@ -85,3 +83,7 @@ class LockEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
85
83
  async def async_internal_added_to_hass(self) -> None: ...
86
84
  def async_registry_entry_updated(self) -> None: ...
87
85
  def _async_read_entity_options(self) -> None: ...
86
+
87
+ __getattr__: Incomplete
88
+ __dir__: Incomplete
89
+ __all__: Incomplete
@@ -1,7 +1,7 @@
1
1
  from _typeshed import Incomplete
2
2
  from enum import StrEnum
3
3
  from homeassistant.const import CONCENTRATION_MICROGRAMS_PER_CUBIC_METER as CONCENTRATION_MICROGRAMS_PER_CUBIC_METER, CONCENTRATION_PARTS_PER_BILLION as CONCENTRATION_PARTS_PER_BILLION, CONCENTRATION_PARTS_PER_MILLION as CONCENTRATION_PARTS_PER_MILLION, LIGHT_LUX as LIGHT_LUX, PERCENTAGE as PERCENTAGE, POWER_VOLT_AMPERE_REACTIVE as POWER_VOLT_AMPERE_REACTIVE, SIGNAL_STRENGTH_DECIBELS as SIGNAL_STRENGTH_DECIBELS, SIGNAL_STRENGTH_DECIBELS_MILLIWATT as SIGNAL_STRENGTH_DECIBELS_MILLIWATT, UnitOfApparentPower as UnitOfApparentPower, UnitOfDataRate as UnitOfDataRate, UnitOfElectricCurrent as UnitOfElectricCurrent, UnitOfElectricPotential as UnitOfElectricPotential, UnitOfEnergy as UnitOfEnergy, UnitOfFrequency as UnitOfFrequency, UnitOfInformation as UnitOfInformation, UnitOfIrradiance as UnitOfIrradiance, UnitOfLength as UnitOfLength, UnitOfMass as UnitOfMass, UnitOfPower as UnitOfPower, UnitOfPrecipitationDepth as UnitOfPrecipitationDepth, UnitOfPressure as UnitOfPressure, UnitOfSoundPressure as UnitOfSoundPressure, UnitOfSpeed as UnitOfSpeed, UnitOfTemperature as UnitOfTemperature, UnitOfTime as UnitOfTime, UnitOfVolume as UnitOfVolume, UnitOfVolumetricFlux as UnitOfVolumetricFlux
4
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
4
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
5
5
  from homeassistant.util.unit_conversion import BaseUnitConverter as BaseUnitConverter, TemperatureConverter as TemperatureConverter
6
6
  from typing import Final
7
7
 
@@ -23,8 +23,6 @@ class NumberMode(StrEnum):
23
23
  _DEPRECATED_MODE_AUTO: Final[Incomplete]
24
24
  _DEPRECATED_MODE_BOX: Final[Incomplete]
25
25
  _DEPRECATED_MODE_SLIDER: Final[Incomplete]
26
- __getattr__: Incomplete
27
- __dir__: Incomplete
28
26
 
29
27
  class NumberDeviceClass(StrEnum):
30
28
  APPARENT_POWER: str
@@ -78,3 +76,6 @@ class NumberDeviceClass(StrEnum):
78
76
  DEVICE_CLASSES_SCHEMA: Final[Incomplete]
79
77
  DEVICE_CLASS_UNITS: dict[NumberDeviceClass, set[type[StrEnum] | str | None]]
80
78
  UNIT_CONVERTERS: dict[str, type[BaseUnitConverter]]
79
+ __getattr__: Incomplete
80
+ __dir__: Incomplete
81
+ __all__: Incomplete
@@ -6,7 +6,7 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry
6
6
  from homeassistant.const import ATTR_COMMAND as ATTR_COMMAND, SERVICE_TOGGLE as SERVICE_TOGGLE, SERVICE_TURN_OFF as SERVICE_TURN_OFF, SERVICE_TURN_ON as SERVICE_TURN_ON, STATE_ON as STATE_ON
7
7
  from homeassistant.core import HomeAssistant as HomeAssistant
8
8
  from homeassistant.helpers.config_validation import PLATFORM_SCHEMA as PLATFORM_SCHEMA, PLATFORM_SCHEMA_BASE as PLATFORM_SCHEMA_BASE, make_entity_service_schema as make_entity_service_schema
9
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
9
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
10
10
  from homeassistant.helpers.entity import ToggleEntity as ToggleEntity, ToggleEntityDescription as ToggleEntityDescription
11
11
  from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
12
12
  from homeassistant.helpers.typing import ConfigType as ConfigType
@@ -44,8 +44,6 @@ class RemoteEntityFeature(IntFlag):
44
44
  _DEPRECATED_SUPPORT_LEARN_COMMAND: Incomplete
45
45
  _DEPRECATED_SUPPORT_DELETE_COMMAND: Incomplete
46
46
  _DEPRECATED_SUPPORT_ACTIVITY: Incomplete
47
- __getattr__: Incomplete
48
- __dir__: Incomplete
49
47
  REMOTE_SERVICE_ACTIVITY_SCHEMA: Incomplete
50
48
 
51
49
  def is_on(hass: HomeAssistant, entity_id: str) -> bool: ...
@@ -80,3 +78,7 @@ class RemoteEntity(ToggleEntity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_)
80
78
  async def async_learn_command(self, **kwargs: Any) -> None: ...
81
79
  def delete_command(self, **kwargs: Any) -> None: ...
82
80
  async def async_delete_command(self, **kwargs: Any) -> None: ...
81
+
82
+ __getattr__: Incomplete
83
+ __dir__: Incomplete
84
+ __all__: Incomplete
@@ -1,7 +1,7 @@
1
1
  from _typeshed import Incomplete
2
2
  from enum import StrEnum
3
3
  from homeassistant.const import CONCENTRATION_MICROGRAMS_PER_CUBIC_METER as CONCENTRATION_MICROGRAMS_PER_CUBIC_METER, CONCENTRATION_PARTS_PER_BILLION as CONCENTRATION_PARTS_PER_BILLION, CONCENTRATION_PARTS_PER_MILLION as CONCENTRATION_PARTS_PER_MILLION, LIGHT_LUX as LIGHT_LUX, PERCENTAGE as PERCENTAGE, POWER_VOLT_AMPERE_REACTIVE as POWER_VOLT_AMPERE_REACTIVE, SIGNAL_STRENGTH_DECIBELS as SIGNAL_STRENGTH_DECIBELS, SIGNAL_STRENGTH_DECIBELS_MILLIWATT as SIGNAL_STRENGTH_DECIBELS_MILLIWATT, UnitOfApparentPower as UnitOfApparentPower, UnitOfDataRate as UnitOfDataRate, UnitOfElectricCurrent as UnitOfElectricCurrent, UnitOfElectricPotential as UnitOfElectricPotential, UnitOfEnergy as UnitOfEnergy, UnitOfFrequency as UnitOfFrequency, UnitOfInformation as UnitOfInformation, UnitOfIrradiance as UnitOfIrradiance, UnitOfLength as UnitOfLength, UnitOfMass as UnitOfMass, UnitOfPower as UnitOfPower, UnitOfPrecipitationDepth as UnitOfPrecipitationDepth, UnitOfPressure as UnitOfPressure, UnitOfSoundPressure as UnitOfSoundPressure, UnitOfSpeed as UnitOfSpeed, UnitOfTemperature as UnitOfTemperature, UnitOfTime as UnitOfTime, UnitOfVolume as UnitOfVolume, UnitOfVolumetricFlux as UnitOfVolumetricFlux
4
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
4
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
5
5
  from homeassistant.util.unit_conversion import BaseUnitConverter as BaseUnitConverter, DataRateConverter as DataRateConverter, DistanceConverter as DistanceConverter, ElectricCurrentConverter as ElectricCurrentConverter, ElectricPotentialConverter as ElectricPotentialConverter, EnergyConverter as EnergyConverter, InformationConverter as InformationConverter, MassConverter as MassConverter, PowerConverter as PowerConverter, PressureConverter as PressureConverter, SpeedConverter as SpeedConverter, TemperatureConverter as TemperatureConverter, UnitlessRatioConverter as UnitlessRatioConverter, VolumeConverter as VolumeConverter
6
6
  from typing import Final
7
7
 
@@ -77,8 +77,9 @@ _DEPRECATED_STATE_CLASS_MEASUREMENT: Final[Incomplete]
77
77
  _DEPRECATED_STATE_CLASS_TOTAL: Final[Incomplete]
78
78
  _DEPRECATED_STATE_CLASS_TOTAL_INCREASING: Final[Incomplete]
79
79
  STATE_CLASSES: Final[list[str]]
80
- __getattr__: Incomplete
81
- __dir__: Incomplete
82
80
  UNIT_CONVERTERS: dict[SensorDeviceClass | str | None, type[BaseUnitConverter]]
83
81
  DEVICE_CLASS_UNITS: dict[SensorDeviceClass, set[type[StrEnum] | str | None]]
84
82
  DEVICE_CLASS_STATE_CLASSES: dict[SensorDeviceClass, set[SensorStateClass]]
83
+ __getattr__: Incomplete
84
+ __dir__: Incomplete
85
+ __all__: Incomplete
@@ -1,4 +1,4 @@
1
- from .const import BLEScannerMode as BLEScannerMode, CONF_BLE_SCANNER_MODE as CONF_BLE_SCANNER_MODE, CONF_SLEEP_PERIOD as CONF_SLEEP_PERIOD, DOMAIN as DOMAIN, LOGGER as LOGGER, MODEL_WALL_DISPLAY as MODEL_WALL_DISPLAY
1
+ from .const import BLEScannerMode as BLEScannerMode, CONF_BLE_SCANNER_MODE as CONF_BLE_SCANNER_MODE, CONF_GEN as CONF_GEN, CONF_SLEEP_PERIOD as CONF_SLEEP_PERIOD, DOMAIN as DOMAIN, LOGGER as LOGGER, MODEL_WALL_DISPLAY as MODEL_WALL_DISPLAY
2
2
  from .coordinator import async_reconnect_soon as async_reconnect_soon
3
3
  from .utils import get_block_device_sleep_period as get_block_device_sleep_period, get_coap_context as get_coap_context, get_info_auth as get_info_auth, get_info_gen as get_info_gen, get_model_name as get_model_name, get_rpc_device_wakeup_period as get_rpc_device_wakeup_period, get_ws_context as get_ws_context, mac_address_from_name as mac_address_from_name
4
4
  from _typeshed import Incomplete
@@ -66,3 +66,4 @@ OTA_SUCCESS: str
66
66
  GEN1_RELEASE_URL: str
67
67
  GEN2_RELEASE_URL: str
68
68
  DEVICES_WITHOUT_FIRMWARE_CHANGELOG: Incomplete
69
+ CONF_GEN: str
@@ -1,5 +1,5 @@
1
1
  from .bluetooth import async_connect_scanner as async_connect_scanner
2
- from .const import ATTR_CHANNEL as ATTR_CHANNEL, ATTR_CLICK_TYPE as ATTR_CLICK_TYPE, ATTR_DEVICE as ATTR_DEVICE, ATTR_GENERATION as ATTR_GENERATION, BATTERY_DEVICES_WITH_PERMANENT_CONNECTION as BATTERY_DEVICES_WITH_PERMANENT_CONNECTION, BLEScannerMode as BLEScannerMode, CONF_BLE_SCANNER_MODE as CONF_BLE_SCANNER_MODE, CONF_SLEEP_PERIOD as CONF_SLEEP_PERIOD, DATA_CONFIG_ENTRY as DATA_CONFIG_ENTRY, DOMAIN as DOMAIN, DUAL_MODE_LIGHT_MODELS as DUAL_MODE_LIGHT_MODELS, ENTRY_RELOAD_COOLDOWN as ENTRY_RELOAD_COOLDOWN, EVENT_SHELLY_CLICK as EVENT_SHELLY_CLICK, INPUTS_EVENTS_DICT as INPUTS_EVENTS_DICT, LOGGER as LOGGER, MAX_PUSH_UPDATE_FAILURES as MAX_PUSH_UPDATE_FAILURES, MODELS_SUPPORTING_LIGHT_EFFECTS as MODELS_SUPPORTING_LIGHT_EFFECTS, OTA_BEGIN as OTA_BEGIN, OTA_ERROR as OTA_ERROR, OTA_PROGRESS as OTA_PROGRESS, OTA_SUCCESS as OTA_SUCCESS, PUSH_UPDATE_ISSUE_ID as PUSH_UPDATE_ISSUE_ID, REST_SENSORS_UPDATE_INTERVAL as REST_SENSORS_UPDATE_INTERVAL, RPC_INPUTS_EVENTS_TYPES as RPC_INPUTS_EVENTS_TYPES, RPC_RECONNECT_INTERVAL as RPC_RECONNECT_INTERVAL, RPC_SENSORS_POLLING_INTERVAL as RPC_SENSORS_POLLING_INTERVAL, SHBTN_MODELS as SHBTN_MODELS, SLEEP_PERIOD_MULTIPLIER as SLEEP_PERIOD_MULTIPLIER, UPDATE_PERIOD_MULTIPLIER as UPDATE_PERIOD_MULTIPLIER
2
+ from .const import ATTR_CHANNEL as ATTR_CHANNEL, ATTR_CLICK_TYPE as ATTR_CLICK_TYPE, ATTR_DEVICE as ATTR_DEVICE, ATTR_GENERATION as ATTR_GENERATION, BATTERY_DEVICES_WITH_PERMANENT_CONNECTION as BATTERY_DEVICES_WITH_PERMANENT_CONNECTION, BLEScannerMode as BLEScannerMode, CONF_BLE_SCANNER_MODE as CONF_BLE_SCANNER_MODE, CONF_GEN as CONF_GEN, CONF_SLEEP_PERIOD as CONF_SLEEP_PERIOD, DATA_CONFIG_ENTRY as DATA_CONFIG_ENTRY, DOMAIN as DOMAIN, DUAL_MODE_LIGHT_MODELS as DUAL_MODE_LIGHT_MODELS, ENTRY_RELOAD_COOLDOWN as ENTRY_RELOAD_COOLDOWN, EVENT_SHELLY_CLICK as EVENT_SHELLY_CLICK, INPUTS_EVENTS_DICT as INPUTS_EVENTS_DICT, LOGGER as LOGGER, MAX_PUSH_UPDATE_FAILURES as MAX_PUSH_UPDATE_FAILURES, MODELS_SUPPORTING_LIGHT_EFFECTS as MODELS_SUPPORTING_LIGHT_EFFECTS, OTA_BEGIN as OTA_BEGIN, OTA_ERROR as OTA_ERROR, OTA_PROGRESS as OTA_PROGRESS, OTA_SUCCESS as OTA_SUCCESS, PUSH_UPDATE_ISSUE_ID as PUSH_UPDATE_ISSUE_ID, REST_SENSORS_UPDATE_INTERVAL as REST_SENSORS_UPDATE_INTERVAL, RPC_INPUTS_EVENTS_TYPES as RPC_INPUTS_EVENTS_TYPES, RPC_RECONNECT_INTERVAL as RPC_RECONNECT_INTERVAL, RPC_SENSORS_POLLING_INTERVAL as RPC_SENSORS_POLLING_INTERVAL, SHBTN_MODELS as SHBTN_MODELS, SLEEP_PERIOD_MULTIPLIER as SLEEP_PERIOD_MULTIPLIER, UPDATE_PERIOD_MULTIPLIER as UPDATE_PERIOD_MULTIPLIER
3
3
  from .utils import get_rpc_device_wakeup_period as get_rpc_device_wakeup_period, update_device_fw_info as update_device_fw_info
4
4
  from _typeshed import Incomplete
5
5
  from aioshelly.block_device import BlockDevice, BlockUpdateType
@@ -1,4 +1,4 @@
1
- from .const import BASIC_INPUTS_EVENTS_TYPES as BASIC_INPUTS_EVENTS_TYPES, CONF_COAP_PORT as CONF_COAP_PORT, DEFAULT_COAP_PORT as DEFAULT_COAP_PORT, DEVICES_WITHOUT_FIRMWARE_CHANGELOG as DEVICES_WITHOUT_FIRMWARE_CHANGELOG, DOMAIN as DOMAIN, GEN1_RELEASE_URL as GEN1_RELEASE_URL, GEN2_RELEASE_URL as GEN2_RELEASE_URL, LOGGER as LOGGER, RPC_INPUTS_EVENTS_TYPES as RPC_INPUTS_EVENTS_TYPES, SHBTN_INPUTS_EVENTS_TYPES as SHBTN_INPUTS_EVENTS_TYPES, SHBTN_MODELS as SHBTN_MODELS, SHIX3_1_INPUTS_EVENTS_TYPES as SHIX3_1_INPUTS_EVENTS_TYPES, UPTIME_DEVIATION as UPTIME_DEVIATION
1
+ from .const import BASIC_INPUTS_EVENTS_TYPES as BASIC_INPUTS_EVENTS_TYPES, CONF_COAP_PORT as CONF_COAP_PORT, CONF_GEN as CONF_GEN, DEFAULT_COAP_PORT as DEFAULT_COAP_PORT, DEVICES_WITHOUT_FIRMWARE_CHANGELOG as DEVICES_WITHOUT_FIRMWARE_CHANGELOG, DOMAIN as DOMAIN, GEN1_RELEASE_URL as GEN1_RELEASE_URL, GEN2_RELEASE_URL as GEN2_RELEASE_URL, LOGGER as LOGGER, RPC_INPUTS_EVENTS_TYPES as RPC_INPUTS_EVENTS_TYPES, SHBTN_INPUTS_EVENTS_TYPES as SHBTN_INPUTS_EVENTS_TYPES, SHBTN_MODELS as SHBTN_MODELS, SHIX3_1_INPUTS_EVENTS_TYPES as SHIX3_1_INPUTS_EVENTS_TYPES, UPTIME_DEVIATION as UPTIME_DEVIATION
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
@@ -6,7 +6,7 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry
6
6
  from homeassistant.const import SERVICE_TOGGLE as SERVICE_TOGGLE, SERVICE_TURN_OFF as SERVICE_TURN_OFF, SERVICE_TURN_ON as SERVICE_TURN_ON, STATE_ON as STATE_ON
7
7
  from homeassistant.core import HomeAssistant as HomeAssistant
8
8
  from homeassistant.helpers.config_validation import PLATFORM_SCHEMA as PLATFORM_SCHEMA, PLATFORM_SCHEMA_BASE as PLATFORM_SCHEMA_BASE
9
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
9
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
10
10
  from homeassistant.helpers.entity import ToggleEntity as ToggleEntity, ToggleEntityDescription as ToggleEntityDescription
11
11
  from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
12
12
  from homeassistant.helpers.typing import ConfigType as ConfigType
@@ -25,8 +25,6 @@ DEVICE_CLASSES_SCHEMA: Incomplete
25
25
  DEVICE_CLASSES: Incomplete
26
26
  _DEPRECATED_DEVICE_CLASS_OUTLET: Incomplete
27
27
  _DEPRECATED_DEVICE_CLASS_SWITCH: Incomplete
28
- __getattr__: Incomplete
29
- __dir__: Incomplete
30
28
 
31
29
  def is_on(hass: HomeAssistant, entity_id: str) -> bool: ...
32
30
  async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
@@ -45,3 +43,7 @@ class SwitchEntity(ToggleEntity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_)
45
43
  _attr_device_class: SwitchDeviceClass | None
46
44
  @cached_property
47
45
  def device_class(self) -> SwitchDeviceClass | None: ...
46
+
47
+ __getattr__: Incomplete
48
+ __dir__: Incomplete
49
+ __all__: Incomplete
@@ -6,7 +6,7 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry
6
6
  from homeassistant.const import ATTR_ENTITY_ID as ATTR_ENTITY_ID, ATTR_TEMPERATURE as ATTR_TEMPERATURE, PRECISION_TENTHS as PRECISION_TENTHS, PRECISION_WHOLE as PRECISION_WHOLE, SERVICE_TURN_OFF as SERVICE_TURN_OFF, SERVICE_TURN_ON as SERVICE_TURN_ON, STATE_OFF as STATE_OFF, STATE_ON as STATE_ON, UnitOfTemperature as UnitOfTemperature
7
7
  from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as ServiceCall
8
8
  from homeassistant.helpers.config_validation import PLATFORM_SCHEMA as PLATFORM_SCHEMA, PLATFORM_SCHEMA_BASE as PLATFORM_SCHEMA_BASE
9
- from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
9
+ from homeassistant.helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
10
10
  from homeassistant.helpers.entity import Entity as Entity, EntityDescription as EntityDescription
11
11
  from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
12
12
  from homeassistant.helpers.typing import ConfigType as ConfigType
@@ -37,8 +37,6 @@ class WaterHeaterEntityFeature(IntFlag):
37
37
  _DEPRECATED_SUPPORT_TARGET_TEMPERATURE: Incomplete
38
38
  _DEPRECATED_SUPPORT_OPERATION_MODE: Incomplete
39
39
  _DEPRECATED_SUPPORT_AWAY_MODE: Incomplete
40
- __getattr__: Incomplete
41
- __dir__: Incomplete
42
40
  ATTR_MAX_TEMP: str
43
41
  ATTR_MIN_TEMP: str
44
42
  ATTR_AWAY_MODE: str
@@ -127,3 +125,7 @@ class WaterHeaterEntity(Entity, cached_properties=CACHED_PROPERTIES_WITH_ATTR_):
127
125
 
128
126
  async def async_service_away_mode(entity: WaterHeaterEntity, service: ServiceCall) -> None: ...
129
127
  async def async_service_temperature_set(entity: WaterHeaterEntity, service: ServiceCall) -> None: ...
128
+
129
+ __getattr__: Incomplete
130
+ __dir__: Incomplete
131
+ __all__: Incomplete
@@ -1,6 +1,7 @@
1
+ from .helpers.deprecation import DeprecatedConstant as DeprecatedConstant, DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
1
2
  from _typeshed import Incomplete
2
3
  from enum import StrEnum
3
- from typing import Any, Final
4
+ from typing import Final
4
5
 
5
6
  APPLICATION_NAME: Final[str]
6
7
  MAJOR_VERSION: Final[int]
@@ -290,9 +291,9 @@ _DEPRECATED_DEVICE_CLASS_GAS: Final[Incomplete]
290
291
  _DEPRECATED_DEVICE_CLASS_HUMIDITY: Final[Incomplete]
291
292
  _DEPRECATED_DEVICE_CLASS_ILLUMINANCE: Final[Incomplete]
292
293
  _DEPRECATED_DEVICE_CLASS_MONETARY: Final[Incomplete]
293
- _DEPRECATED_DEVICE_CLASS_NITROGEN_DIOXIDE: Incomplete
294
- _DEPRECATED_DEVICE_CLASS_NITROGEN_MONOXIDE: Incomplete
295
- _DEPRECATED_DEVICE_CLASS_NITROUS_OXIDE: Incomplete
294
+ _DEPRECATED_DEVICE_CLASS_NITROGEN_DIOXIDE: Final[Incomplete]
295
+ _DEPRECATED_DEVICE_CLASS_NITROGEN_MONOXIDE: Final[Incomplete]
296
+ _DEPRECATED_DEVICE_CLASS_NITROUS_OXIDE: Final[Incomplete]
296
297
  _DEPRECATED_DEVICE_CLASS_OZONE: Final[Incomplete]
297
298
  _DEPRECATED_DEVICE_CLASS_PM1: Final[Incomplete]
298
299
  _DEPRECATED_DEVICE_CLASS_PM10: Final[Incomplete]
@@ -301,15 +302,11 @@ _DEPRECATED_DEVICE_CLASS_POWER_FACTOR: Final[Incomplete]
301
302
  _DEPRECATED_DEVICE_CLASS_POWER: Final[Incomplete]
302
303
  _DEPRECATED_DEVICE_CLASS_PRESSURE: Final[Incomplete]
303
304
  _DEPRECATED_DEVICE_CLASS_SIGNAL_STRENGTH: Final[Incomplete]
304
- _DEPRECATED_DEVICE_CLASS_SULPHUR_DIOXIDE: Incomplete
305
+ _DEPRECATED_DEVICE_CLASS_SULPHUR_DIOXIDE: Final[Incomplete]
305
306
  _DEPRECATED_DEVICE_CLASS_TEMPERATURE: Final[Incomplete]
306
307
  _DEPRECATED_DEVICE_CLASS_TIMESTAMP: Final[Incomplete]
307
- _DEPRECATED_DEVICE_CLASS_VOLATILE_ORGANIC_COMPOUNDS: Incomplete
308
+ _DEPRECATED_DEVICE_CLASS_VOLATILE_ORGANIC_COMPOUNDS: Final[Incomplete]
308
309
  _DEPRECATED_DEVICE_CLASS_VOLTAGE: Final[Incomplete]
309
-
310
- def __getattr__(name: str) -> Any: ...
311
- def __dir__() -> list[str]: ...
312
-
313
310
  STATE_ON: Final[str]
314
311
  STATE_OFF: Final[str]
315
312
  STATE_HOME: Final[str]
@@ -795,3 +792,6 @@ SIGNAL_BOOTSTRAP_INTEGRATIONS: str
795
792
  FORMAT_DATE: Final[str]
796
793
  FORMAT_TIME: Final[str]
797
794
  FORMAT_DATETIME: Final[Incomplete]
795
+ __getattr__: Incomplete
796
+ __dir__: Incomplete
797
+ __all__: Incomplete
@@ -10,6 +10,7 @@ from .components.http import ApiConfig as ApiConfig, HomeAssistantHTTP as HomeAs
10
10
  from .config_entries import ConfigEntries as ConfigEntries
11
11
  from .const import ATTR_DOMAIN as ATTR_DOMAIN, ATTR_FRIENDLY_NAME as ATTR_FRIENDLY_NAME, ATTR_SERVICE as ATTR_SERVICE, ATTR_SERVICE_DATA as ATTR_SERVICE_DATA, COMPRESSED_STATE_ATTRIBUTES as COMPRESSED_STATE_ATTRIBUTES, COMPRESSED_STATE_CONTEXT as COMPRESSED_STATE_CONTEXT, COMPRESSED_STATE_LAST_CHANGED as COMPRESSED_STATE_LAST_CHANGED, COMPRESSED_STATE_LAST_UPDATED as COMPRESSED_STATE_LAST_UPDATED, COMPRESSED_STATE_STATE as COMPRESSED_STATE_STATE, EVENT_CALL_SERVICE as EVENT_CALL_SERVICE, EVENT_CORE_CONFIG_UPDATE as EVENT_CORE_CONFIG_UPDATE, EVENT_HOMEASSISTANT_CLOSE as EVENT_HOMEASSISTANT_CLOSE, EVENT_HOMEASSISTANT_FINAL_WRITE as EVENT_HOMEASSISTANT_FINAL_WRITE, EVENT_HOMEASSISTANT_START as EVENT_HOMEASSISTANT_START, EVENT_HOMEASSISTANT_STARTED as EVENT_HOMEASSISTANT_STARTED, EVENT_HOMEASSISTANT_STOP as EVENT_HOMEASSISTANT_STOP, EVENT_SERVICE_REGISTERED as EVENT_SERVICE_REGISTERED, EVENT_SERVICE_REMOVED as EVENT_SERVICE_REMOVED, EVENT_STATE_CHANGED as EVENT_STATE_CHANGED, MATCH_ALL as MATCH_ALL, MAX_LENGTH_EVENT_EVENT_TYPE as MAX_LENGTH_EVENT_EVENT_TYPE, MAX_LENGTH_STATE_STATE as MAX_LENGTH_STATE_STATE, UnitOfLength as UnitOfLength, __version__ as __version__
12
12
  from .exceptions import HomeAssistantError as HomeAssistantError, InvalidEntityFormatError as InvalidEntityFormatError, InvalidStateError as InvalidStateError, MaxLengthExceeded as MaxLengthExceeded, ServiceNotFound as ServiceNotFound, Unauthorized as Unauthorized
13
+ from .helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
13
14
  from .helpers.entity import StateInfo as StateInfo
14
15
  from .helpers.json import json_dumps as json_dumps
15
16
  from .helpers.storage import Store as Store
@@ -54,10 +55,6 @@ class ConfigSource(enum.StrEnum):
54
55
  _DEPRECATED_SOURCE_DISCOVERED: Incomplete
55
56
  _DEPRECATED_SOURCE_STORAGE: Incomplete
56
57
  _DEPRECATED_SOURCE_YAML: Incomplete
57
-
58
- def __getattr__(name: str) -> Any: ...
59
- def __dir__() -> list[str]: ...
60
-
61
58
  TIMEOUT_EVENT_START: int
62
59
  MAX_EXPECTED_ENTITY_IDS: int
63
60
  _LOGGER: Incomplete
@@ -367,3 +364,7 @@ class Config:
367
364
  def __init__(self, hass: HomeAssistant) -> None: ...
368
365
  async def _async_migrate_func(self, old_major_version: int, old_minor_version: int, old_data: dict[str, Any]) -> dict[str, Any]: ...
369
366
  async def async_save(self, data: dict[str, Any]) -> None: ...
367
+
368
+ __getattr__: Incomplete
369
+ __dir__: Incomplete
370
+ __all__: Incomplete
@@ -2,7 +2,7 @@ import abc
2
2
  import voluptuous as vol
3
3
  from .core import HomeAssistant as HomeAssistant, callback as callback
4
4
  from .exceptions import HomeAssistantError as HomeAssistantError
5
- from .helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
5
+ from .helpers.deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
6
6
  from .helpers.frame import report as report
7
7
  from _typeshed import Incomplete
8
8
  from collections.abc import Callable as Callable, Iterable, Mapping
@@ -30,8 +30,6 @@ _DEPRECATED_RESULT_TYPE_EXTERNAL_STEP_DONE: Incomplete
30
30
  _DEPRECATED_RESULT_TYPE_SHOW_PROGRESS: Incomplete
31
31
  _DEPRECATED_RESULT_TYPE_SHOW_PROGRESS_DONE: Incomplete
32
32
  _DEPRECATED_RESULT_TYPE_MENU: Incomplete
33
- __getattr__: Incomplete
34
- __dir__: Incomplete
35
33
  EVENT_DATA_ENTRY_FLOW_PROGRESSED: str
36
34
  FLOW_NOT_COMPLETE_STEPS: Incomplete
37
35
 
@@ -130,3 +128,7 @@ class FlowHandler:
130
128
  async def async_setup_preview(hass: HomeAssistant) -> None: ...
131
129
 
132
130
  def _create_abort_data(flow_id: str, handler: str, reason: str, description_placeholders: Mapping[str, str] | None = None) -> FlowResult: ...
131
+
132
+ __getattr__: Incomplete
133
+ __dir__: Incomplete
134
+ __all__: Incomplete
@@ -1,9 +1,5 @@
1
- from .frame import MissingIntegrationFrame as MissingIntegrationFrame, get_integration_frame as get_integration_frame
2
1
  from collections.abc import Callable as Callable
3
2
  from enum import Enum
4
- from homeassistant.core import HomeAssistant as HomeAssistant, async_get_hass as async_get_hass
5
- from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
6
- from homeassistant.loader import async_suggest_report_issue as async_suggest_report_issue
7
3
  from typing import Any, NamedTuple, ParamSpec, TypeVar
8
4
 
9
5
  _ObjectT = TypeVar('_ObjectT', bound=object)
@@ -29,4 +25,5 @@ class DeprecatedConstantEnum(NamedTuple):
29
25
  _PREFIX_DEPRECATED: str
30
26
 
31
27
  def check_if_deprecated_constant(name: str, module_globals: dict[str, Any]) -> Any: ...
32
- def dir_with_deprecated_constants(module_globals: dict[str, Any]) -> list[str]: ...
28
+ def dir_with_deprecated_constants(module_globals_keys: list[str]) -> list[str]: ...
29
+ def all_with_deprecated_constants(module_globals: dict[str, Any]) -> list[str]: ...
@@ -1,6 +1,6 @@
1
1
  from . import entity_registry as entity_registry, storage as storage
2
2
  from .debounce import Debouncer as Debouncer
3
- from .deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
3
+ from .deprecation import DeprecatedConstantEnum as DeprecatedConstantEnum, all_with_deprecated_constants as all_with_deprecated_constants, check_if_deprecated_constant as check_if_deprecated_constant, dir_with_deprecated_constants as dir_with_deprecated_constants
4
4
  from .frame import report as report
5
5
  from .json import JSON_DUMP as JSON_DUMP, find_paths_unserializable_data as find_paths_unserializable_data
6
6
  from .typing import UNDEFINED as UNDEFINED, UndefinedType as UndefinedType
@@ -41,8 +41,6 @@ class DeviceEntryDisabler(StrEnum):
41
41
  _DEPRECATED_DISABLED_CONFIG_ENTRY: Incomplete
42
42
  _DEPRECATED_DISABLED_INTEGRATION: Incomplete
43
43
  _DEPRECATED_DISABLED_USER: Incomplete
44
- __getattr__: Incomplete
45
- __dir__: Incomplete
46
44
 
47
45
  class DeviceInfo(TypedDict, total=False):
48
46
  configuration_url: str | URL | None
@@ -172,3 +170,7 @@ def async_config_entry_disabled_by_changed(registry: DeviceRegistry, config_entr
172
170
  def async_cleanup(hass: HomeAssistant, dev_reg: DeviceRegistry, ent_reg: entity_registry.EntityRegistry) -> None: ...
173
171
  def async_setup_cleanup(hass: HomeAssistant, dev_reg: DeviceRegistry) -> None: ...
174
172
  def _normalize_connections(connections: set[tuple[str, str]]) -> set[tuple[str, str]]: ...
173
+
174
+ __getattr__: Incomplete
175
+ __dir__: Incomplete
176
+ __all__: Incomplete
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: homeassistant-stubs
3
- Version: 2024.1.0b8
3
+ Version: 2024.1.1
4
4
  Summary: PEP 484 typing stubs for Home Assistant Core
5
5
  Home-page: https://github.com/KapJI/homeassistant-stubs
6
6
  License: MIT
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Programming Language :: Python :: 3.10
18
18
  Classifier: Topic :: Software Development
19
19
  Classifier: Typing :: Typed
20
- Requires-Dist: homeassistant (==2024.1.0b8)
20
+ Requires-Dist: homeassistant (==2024.1.1)
21
21
  Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
22
22
  Project-URL: Repository, https://github.com/KapJI/homeassistant-stubs
23
23
  Project-URL: Release Notes, https://github.com/KapJI/homeassistant-stubs/releases
@@ -84,6 +84,10 @@ homeassistant-stubs/components/airnow/const.pyi,sha256=knGmoyL7GRBIrAzOqs1BvVV6t
84
84
  homeassistant-stubs/components/airnow/coordinator.pyi,sha256=XWdnB6K9l3HI98p8X12oDMH2ftIpdq6zANAwotwlA-8,1494
85
85
  homeassistant-stubs/components/airnow/diagnostics.pyi,sha256=i_uXB2WwXrhwLNWr8M4lSudnO74fuN3V5mwrvCmrYX4,786
86
86
  homeassistant-stubs/components/airnow/sensor.pyi,sha256=BBHbn1pHOsJzywtoVVYz0Ezl5yiuXOIRRmd77CyFnU8,3317
87
+ homeassistant-stubs/components/airthings_ble/__init__.pyi,sha256=-VQnQOluSug3JfrajtMa7isxj6AwgHGvTlDKatEG8xI,918
88
+ homeassistant-stubs/components/airthings_ble/config_flow.pyi,sha256=vXGUhRyuQh-DjQMeiGpLdlRoL61jCu2J8eW3_G4xXFY,1497
89
+ homeassistant-stubs/components/airthings_ble/const.pyi,sha256=myzvf8_EC7jK4HfTu2Evzn3xADj6WxTtR2M7_gR9Bg0,96
90
+ homeassistant-stubs/components/airthings_ble/sensor.pyi,sha256=bGHfKXu1jsZtLEWbZdOelyVAwBSAQ-KKBxvahEjw-VU,2315
87
91
  homeassistant-stubs/components/airvisual/__init__.pyi,sha256=jw9V2El2pe8-pGBWGbCb6r4W3aaQEOZluwHGYtaGtI8,2830
88
92
  homeassistant-stubs/components/airvisual/config_flow.pyi,sha256=2Nwa7f6MlOBFY4JD-k61jUceb4B0a6panZRvORnXkHA,2557
89
93
  homeassistant-stubs/components/airvisual/const.pyi,sha256=getX-dO7ORHjK9D0ntDe3ti1zLbiXRujK0ttwRNiJkY,236
@@ -121,8 +125,8 @@ homeassistant-stubs/components/aladdin_connect/cover.pyi,sha256=03RrL240s881JicE
121
125
  homeassistant-stubs/components/aladdin_connect/diagnostics.pyi,sha256=RkY7VWqwwsmBxy1FPB_QuSaO3W0Y1BbxPkMXbE1OYlQ,525
122
126
  homeassistant-stubs/components/aladdin_connect/model.pyi,sha256=gif3_LF8-0S80dij8GvDbuKoRoSpVHsjINtSjr1IDGg,160
123
127
  homeassistant-stubs/components/aladdin_connect/sensor.pyi,sha256=SHFDSGf9aYO70I1mEj2qGeDnVCfCdKdnPI2GyINO8rw,2134
124
- homeassistant-stubs/components/alarm_control_panel/__init__.pyi,sha256=5EnCgOhf4Mbs9BDlfk4YlZTnuWx_XcQwmt3n7XhI_QM,4838
125
- homeassistant-stubs/components/alarm_control_panel/const.pyi,sha256=XJNSo9nDzjDS6oLSR_DQ20g4gFfyklPGpI_AgfIMrBI,1336
128
+ homeassistant-stubs/components/alarm_control_panel/__init__.pyi,sha256=x961sLEfKqYLTKpTFxN6xRulVaEbfFabgnRlDl8SRYU,4923
129
+ homeassistant-stubs/components/alarm_control_panel/const.pyi,sha256=qQ67ccTCIwoc1Q2MO7e1Fk6E7oSXyo4Ch3cDhYsXchM,1420
126
130
  homeassistant-stubs/components/alarm_control_panel/device_action.pyi,sha256=MBMRM5J6rpIKfySyJtvzcsA8jt8glz60oPpZqk0eCNY,1695
127
131
  homeassistant-stubs/components/alarm_control_panel/device_condition.pyi,sha256=2jir5hL28nJND2z-4gKPeWacr2BJfRxhA_1U-gkz22o,1836
128
132
  homeassistant-stubs/components/alarm_control_panel/device_trigger.pyi,sha256=45gJZMC9qlrak6B6DnzhBBo3Zphn806U81RohgvrIHQ,1679
@@ -241,7 +245,7 @@ homeassistant-stubs/components/auth/__init__.pyi,sha256=yYR7xBFEsjd1BG1R5uhR_VZE
241
245
  homeassistant-stubs/components/auth/indieauth.pyi,sha256=jh7c6AHsDSvxPire6RMjBRK9K0K1IT0hAy56bhuOhZk,807
242
246
  homeassistant-stubs/components/auth/login_flow.pyi,sha256=BWJtlZ4IX5aDFz4xk6wtnEqBYYkEXwf81zTS198c3Ic,2714
243
247
  homeassistant-stubs/components/auth/mfa_setup_flow.pyi,sha256=fYTtpX_nxwkTbC7lmAVCL0TTmJjllSZN1-0rem207q0,1165
244
- homeassistant-stubs/components/automation/__init__.pyi,sha256=9koUsYpLPRBuqDKdUKopt7ewpj3pIzxw4Lp27Apoc24,10000
248
+ homeassistant-stubs/components/automation/__init__.pyi,sha256=no8cm2s3rWEE6U5QvE8ytAaBPAdlSDdZo4D2E2161pY,10085
245
249
  homeassistant-stubs/components/automation/config.pyi,sha256=Poo-WTrJMKVZSZyrZWfCgUN1gDBMPxcier-qLolMfZQ,2135
246
250
  homeassistant-stubs/components/automation/const.pyi,sha256=1uZ4plSCmNEF1e4bpaT842ktrPFGu6uM40pwndbF2pQ,279
247
251
  homeassistant-stubs/components/automation/helpers.pyi,sha256=3rrJfMsZsu7o7Pv3DkNxMsc4xLGGXkZ_YQpSdW2ihnE,606
@@ -275,7 +279,7 @@ homeassistant-stubs/components/bayesian/binary_sensor.pyi,sha256=vb90c0_qt3Y61LO
275
279
  homeassistant-stubs/components/bayesian/const.pyi,sha256=BPam0N0nuPJ936NQV_nNfVCls_5XdQ95yG1U7EYGNJU,321
276
280
  homeassistant-stubs/components/bayesian/helpers.pyi,sha256=aHMscpaBDpHKbsq3k7FTMIQMf_FVtyl8F-Om1yGIVYQ,1042
277
281
  homeassistant-stubs/components/bayesian/issues.pyi,sha256=HiwdbHjCdNGH1bCg4R0wwh_XMlHl7XRaQ3Qv46_MwPQ,327
278
- homeassistant-stubs/components/binary_sensor/__init__.pyi,sha256=wTz0sDu_U0LdueYjvuYIi86ITpIo27AMptlS5pUhk_Y,4445
282
+ homeassistant-stubs/components/binary_sensor/__init__.pyi,sha256=2MgRFYNY_sJPdls2xne1IvuwEw2AetU6jHrhFICkvrM,4530
279
283
  homeassistant-stubs/components/binary_sensor/device_condition.pyi,sha256=4mgXqyFq-m1cCIWNNvre6DMYpPFQTP9TMu2ycFPAvNs,2246
280
284
  homeassistant-stubs/components/binary_sensor/device_trigger.pyi,sha256=qE0seygxfuqJlmMOH3e4U-RFvQVoHEMK1WixGCQGqDw,2212
281
285
  homeassistant-stubs/components/binary_sensor/group.pyi,sha256=lmhKBgLtC75JKlVM0td29usf7IovWyqFVAXhsrX_muI,361
@@ -356,8 +360,8 @@ homeassistant-stubs/components/button/device_trigger.pyi,sha256=VAUodVs-6EBVLz2Z
356
360
  homeassistant-stubs/components/calendar/__init__.pyi,sha256=isQljlzHoJzYzQMLItO9QPNcW2Kdxb8ZusMLhdS40uw,7296
357
361
  homeassistant-stubs/components/calendar/const.pyi,sha256=eUpEeyhgKQ8zo6Foevt2nc1nI1JYBt1muOsn3NT2jqY,602
358
362
  homeassistant-stubs/components/calendar/trigger.pyi,sha256=1O2xkdCUtoElHynXTR8gDr8k3iBp3FX94VROLVbQE1M,3025
359
- homeassistant-stubs/components/camera/__init__.pyi,sha256=ouuhZojPM1H_c1RshpQO2znP-lTSMUMAtZbvQBrmVNM,10859
360
- homeassistant-stubs/components/camera/const.pyi,sha256=87-KLdNF78K4jdpb979eRICYJ-HbHMw6iudtYLLyQMg,788
363
+ homeassistant-stubs/components/camera/__init__.pyi,sha256=X_eOdaHQaOQytnZgWY77jjROWbKD-Y-kQtzmzETFQz0,10944
364
+ homeassistant-stubs/components/camera/const.pyi,sha256=WavezA5-2u3RQF1nBe_dsh-RD9rh7Z-m4tumZp4jl00,872
361
365
  homeassistant-stubs/components/camera/diagnostics.pyi,sha256=SHd1UzkG59ul4OqMgd8tXdr52UqJQCSsHnGKDthfIII,455
362
366
  homeassistant-stubs/components/camera/img_util.pyi,sha256=rEWvDRbmNe8sYRCzqs9mGcg1ck58eKPAA6XhE-cDKq4,621
363
367
  homeassistant-stubs/components/camera/media_source.pyi,sha256=eCZpBvZSc45y8U6eui-jch8swxG8iGaxnI-PDdHuzJk,1280
@@ -375,8 +379,8 @@ homeassistant-stubs/components/clickatell/__init__.pyi,sha256=47DEQpj8HBSa-_TImW
375
379
  homeassistant-stubs/components/clickatell/notify.pyi,sha256=IEwN7FS6bbUe91QMWiZMfH_rt1YS-ASBpOt6NgTftfA,895
376
380
  homeassistant-stubs/components/clicksend/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
377
381
  homeassistant-stubs/components/clicksend/notify.pyi,sha256=a195ryTNYWf_niAnjQz2OpsYF4AQ1eKwB2t7vSzmZoo,1136
378
- homeassistant-stubs/components/climate/__init__.pyi,sha256=xmFCuEBfzGHECz_hm-QaWxlwrsaJ8Og84npz5KcBTYs,9964
379
- homeassistant-stubs/components/climate/const.pyi,sha256=LOdTXiNoXl7xdQGjv5ogu7759IZUpo5qE4bzFmTCcqc,2838
382
+ homeassistant-stubs/components/climate/__init__.pyi,sha256=gRNpINNbKdCWSjDiB-vkg9cUYfoHqYzmBPHJsiFcig0,10049
383
+ homeassistant-stubs/components/climate/const.pyi,sha256=vIGNCIY1Hx6ZqTrIK23_Z6QNwa46cX0v9-T7P8hqi_I,2922
380
384
  homeassistant-stubs/components/climate/device_action.pyi,sha256=xx3hQUQOzNPFHUSXZHi_4HVChKB6xnjwsq5tO98sURI,1454
381
385
  homeassistant-stubs/components/climate/device_condition.pyi,sha256=fwkkwzQLqzo-4_tZoUXKub9sCKMOzd79AcWoZe2W5Uw,1472
382
386
  homeassistant-stubs/components/climate/device_trigger.pyi,sha256=mAGFpGWtfsRwBwK4WxkUAT94Lj67lvAPjAL8eqGy0vA,1251
@@ -384,7 +388,7 @@ homeassistant-stubs/components/climate/group.pyi,sha256=WqgequUXvOC4509T_L1p3h0T
384
388
  homeassistant-stubs/components/climate/intent.pyi,sha256=LIcCeLvs8ZlKC8Kq1ku-XqxLCH2ltMujitFequgAdNw,615
385
389
  homeassistant-stubs/components/climate/reproduce_state.pyi,sha256=9iZjyeGJaP22yGLMOyM5Qf7nmd-P4hPo4e71yhGE5kg,1270
386
390
  homeassistant-stubs/components/climate/significant_change.pyi,sha256=xWDZyza3NpgLbXJGuvDpoisZCmyPtPNo3rVMVGSGJsk,965
387
- homeassistant-stubs/components/cloud/__init__.pyi,sha256=M8C0lmY_Bq3qKgkNHEGy7XIFwfCM8MJKUXrA7LEjl1Y,4008
391
+ homeassistant-stubs/components/cloud/__init__.pyi,sha256=kqio-2NsIMr72rnIveQ0ebWt_Mn1HnIFv2RjU0Hr3gg,4098
388
392
  homeassistant-stubs/components/cloud/account_link.pyi,sha256=WKW09aFDHCkNZW6P52MAgqPeQt3bd6i8739d8-whMow,1186
389
393
  homeassistant-stubs/components/cloud/alexa_config.pyi,sha256=r2B7ObE_D-DqlgQ3bmiTLE9GUhe4u6bx89VarCwAPac,3755
390
394
  homeassistant-stubs/components/cloud/assist_pipeline.pyi,sha256=xDYGh8oRh74A63Fnq80nl60rX5wfOdMqsYZ0Mk607dk,787
@@ -401,7 +405,7 @@ homeassistant-stubs/components/cloud/subscription.pyi,sha256=nOeRyqP6TtJyHqYapBZ
401
405
  homeassistant-stubs/components/cloud/system_health.pyi,sha256=aTzokkepycKNtqqofKfHzJNwNXL43_BttPJTmSrFEls,476
402
406
  homeassistant-stubs/components/cloud/tts.pyi,sha256=Du3GQk7BHkojIiLB4HR0AamE6kHTedXpwsrO9puKonQ,1684
403
407
  homeassistant-stubs/components/configurator/__init__.pyi,sha256=C2JkFP3_sEvHGQMgCtUs-zpZ1OyO5IG9c9BiRjHA8ug,2667
404
- homeassistant-stubs/components/cover/__init__.pyi,sha256=Uf9hKtUKswSGA2Eg9tkD69mlY83rgZ5LSAEzyKJRsok,6516
408
+ homeassistant-stubs/components/cover/__init__.pyi,sha256=NUXqjwVCq9kVHW4juvLkCwt70R2xNVrzCgweYmm4Q_w,6601
405
409
  homeassistant-stubs/components/cover/device_action.pyi,sha256=blbykW1YNlOhVacvGgHL2DWPzyZ22Q0Bo-MielwHjMI,1751
406
410
  homeassistant-stubs/components/cover/device_condition.pyi,sha256=GLkF-BYjUhm156TNwxrbgskLYcO0cjXLcvL6D8tEMBk,1434
407
411
  homeassistant-stubs/components/cover/device_trigger.pyi,sha256=OU0vHVMkQqARgOWSSho8Ea9q_LiWQmw53bx0rwyH-LQ,1543
@@ -499,9 +503,9 @@ homeassistant-stubs/components/device_automation/exceptions.pyi,sha256=sOH0mJgvM
499
503
  homeassistant-stubs/components/device_automation/helpers.pyi,sha256=_gsVN_EVRwi0rr87CCcmHNZAaV9rwougoLbeNEYP8Ng,829
500
504
  homeassistant-stubs/components/device_automation/toggle_entity.pyi,sha256=DPTGM8PGy4yadqmMoQ3mzmpi1oTSpPsEWQl5jC2LRyQ,2386
501
505
  homeassistant-stubs/components/device_automation/trigger.pyi,sha256=TznFvFofEMQlXlMnUR5ZfkV-KPLTAxwgtWGcRO43Ww0,1325
502
- homeassistant-stubs/components/device_tracker/__init__.pyi,sha256=-ctZsRZWw_nI9_A818kkPYVMDSyKxtsQ1dMDqJsX9p0,2165
506
+ homeassistant-stubs/components/device_tracker/__init__.pyi,sha256=5NA5o31LxsP4FCQMHN_l5wJ-HPNx7n1_hdqX8RARW7I,2249
503
507
  homeassistant-stubs/components/device_tracker/config_entry.pyi,sha256=CdCuWGaceaOrNWI095wthgQoiK3xpSb_N-nn_gtIrOY,3389
504
- homeassistant-stubs/components/device_tracker/const.pyi,sha256=xyQ5iBT_UpO8tdp6u2uH_Qx7pQAiRPKrcdO4kkJBdgU,1329
508
+ homeassistant-stubs/components/device_tracker/const.pyi,sha256=fAtLovBTH-SzeavU3DjeOnQMtPs42sxXg6wW6_ad4vs,1413
505
509
  homeassistant-stubs/components/device_tracker/device_condition.pyi,sha256=p2Q-J10bxSYCn8BI_XAb_0Vm8c7qiNi2RzgQm4VUWWw,940
506
510
  homeassistant-stubs/components/device_tracker/device_trigger.pyi,sha256=iy4yvjCKPO_1Smth2eZ0BHVL-iWonR-fS7l7uyDU3oo,1155
507
511
  homeassistant-stubs/components/device_tracker/group.pyi,sha256=WOPxs9Mhs5dy2kXdgI_vcby1GQ_UgEZbVTQyVnWFbhM,375
@@ -681,7 +685,7 @@ homeassistant-stubs/components/faa_delays/binary_sensor.pyi,sha256=NzftD4YOL3stl
681
685
  homeassistant-stubs/components/faa_delays/config_flow.pyi,sha256=jwqamIwuA4eaaKV2OYR1ZIW4mmwMriANt_VfmDVvIZE,556
682
686
  homeassistant-stubs/components/faa_delays/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
683
687
  homeassistant-stubs/components/faa_delays/coordinator.pyi,sha256=6Srspg6DT1riIX8tKb78K2fVnnHp6RvpK_4nwE0qmrg,612
684
- homeassistant-stubs/components/fan/__init__.pyi,sha256=46OoUfvsFAd8etArz4dMURbbVvywqXbRROjy6y2zVys,5773
688
+ homeassistant-stubs/components/fan/__init__.pyi,sha256=Kr18560GwM2ya3hDV_OR0vp9R1i7hoCidSpjoMn6_j8,5858
685
689
  homeassistant-stubs/components/fan/device_action.pyi,sha256=OBedfRV84tetl5ZFjQTbDq3cpVqRJjDWEojSY00K748,827
686
690
  homeassistant-stubs/components/fan/device_condition.pyi,sha256=UZBpwsNISwIBpbm0HKTC9qVtmf6eAUO1-NNJsdIQQCE,955
687
691
  homeassistant-stubs/components/fan/device_trigger.pyi,sha256=nlcZZmBzMW1rB5AeK7_mZAQoynfSEvMFrgtxkwkVMDU,887
@@ -739,7 +743,7 @@ homeassistant-stubs/components/forecast_solar/sensor.pyi,sha256=1Auh4wTXjS9d8IAJ
739
743
  homeassistant-stubs/components/fritz/__init__.pyi,sha256=gRJmGVjHtgBsyafdZgEgXFA951Hs60oVkFe46fzjczw,1057
740
744
  homeassistant-stubs/components/fritz/binary_sensor.pyi,sha256=WiOJuVTKMMiulxdrP19sM1xz9hrDWcAtjp182NyAHTM,1664
741
745
  homeassistant-stubs/components/fritz/button.pyi,sha256=RelacqP1b5WEh_S9g12_rXudiFtf9UQjMs_2l42FEb8,1832
742
- homeassistant-stubs/components/fritz/common.pyi,sha256=u_eBHIGkqLCy1ZVdg4fa7HDHtUZb7LJWCZXYdu7Seuo,10428
746
+ homeassistant-stubs/components/fritz/common.pyi,sha256=pclUkN4Bep_n1wP0XXPi6cfAa3iegpjt0gtqgCXVGIA,10449
743
747
  homeassistant-stubs/components/fritz/config_flow.pyi,sha256=P5hWUBKQoJxoxNiWOegNeYtXZbcgm3G19yewT0tI9RY,2731
744
748
  homeassistant-stubs/components/fritz/const.pyi,sha256=y9eN8wrKLE53_LahxGAFNF8qzmQVErGl_gJ59y_4daw,869
745
749
  homeassistant-stubs/components/fritz/device_tracker.pyi,sha256=zdzzU4lzeGgpI2g3uCPh9WXVgsM7qmjguIDwYjx7h1s,1522
@@ -747,7 +751,7 @@ homeassistant-stubs/components/fritz/diagnostics.pyi,sha256=D6JqSSKdPyx9epq4UVgU
747
751
  homeassistant-stubs/components/fritz/image.pyi,sha256=X5Zr1N4RqOv7uXzufosjkYWDRxzD9iB3kFxXuimXh4o,1351
748
752
  homeassistant-stubs/components/fritz/sensor.pyi,sha256=K-RHCBQ8QT5CHB_fo9fvRUG71sKwvArulK-4cyEVkZY,3697
749
753
  homeassistant-stubs/components/fritz/services.pyi,sha256=eNSuzNmhlKnRhVi2DYncUTlV2hP6_pQdkov6L9Y4UAs,1044
750
- homeassistant-stubs/components/fritz/switch.pyi,sha256=iTfzts3JcsUBIYQxMY4EyfFreLovRTXwdk-uaavkcW0,6248
754
+ homeassistant-stubs/components/fritz/switch.pyi,sha256=2gj14svzcePjf1uSqf-w03ATPPZgtlil8yzHaN0zF2g,6234
751
755
  homeassistant-stubs/components/fritz/update.pyi,sha256=lZOvTm3VEZFF4uf7A-SJY4V6ZwzOblvLyPVUhqvTNIs,1827
752
756
  homeassistant-stubs/components/fritzbox/__init__.pyi,sha256=ajkBB7-M6Ha011OMhmuoqM6hImM4ad4igLQoSCwAj5k,2338
753
757
  homeassistant-stubs/components/fritzbox/binary_sensor.pyi,sha256=cFyb7eEVaGXH9NQtB_9n7en5KmhCeGG910Wgav8T2vY,1873
@@ -1230,7 +1234,7 @@ homeassistant-stubs/components/local_todo/config_flow.pyi,sha256=yNxML4CpjS30zMy
1230
1234
  homeassistant-stubs/components/local_todo/const.pyi,sha256=c2LoyxXuf6BLf9ubXFHtMFuw9n1J6KqBKKt94ljvIKY,59
1231
1235
  homeassistant-stubs/components/local_todo/store.pyi,sha256=Bi0t0Wj3r2G5jwC961QbcAsE2XfOzzy9G8PhtfD0O4Y,472
1232
1236
  homeassistant-stubs/components/local_todo/todo.pyi,sha256=AC8UcyqscDvAPjG7jCnFuwHEUf--SVO7QTvMfVLtUqE,1808
1233
- homeassistant-stubs/components/lock/__init__.pyi,sha256=b1s3weLMYJblaXrfJUlEWX3m_zHIWjCAJRB4uefUuXg,4522
1237
+ homeassistant-stubs/components/lock/__init__.pyi,sha256=6BGtBM5vsnqoJQ2V0pLK9Peiintwm9Zx_8Rmdg4ylCI,4607
1234
1238
  homeassistant-stubs/components/lock/device_action.pyi,sha256=nds_dhqIaIWbZYwuXFxUZbmF4fGylpwTfxWsywPdADg,1170
1235
1239
  homeassistant-stubs/components/lock/device_condition.pyi,sha256=MPxXYyUG20b1IgTofWjVWjItggZ7jTR51B9Jb2ZpqoA,1071
1236
1240
  homeassistant-stubs/components/lock/device_trigger.pyi,sha256=Ot8LrdsjHn-h4NrhCH8xt9SMx6F_kpTmvabhkw9uz0M,1247
@@ -1531,7 +1535,7 @@ homeassistant-stubs/components/notion/diagnostics.pyi,sha256=euSbdM3IKqRLatPtv37
1531
1535
  homeassistant-stubs/components/notion/model.pyi,sha256=8kt-LgjSRqt-FwlzI3LtNMXiYhRMZptdobNN0rdl-Kg,243
1532
1536
  homeassistant-stubs/components/notion/sensor.pyi,sha256=uOY_9jCikeKscqI4ObIBMmwlCTGER-sE2iDbs5YGyVY,1603
1533
1537
  homeassistant-stubs/components/number/__init__.pyi,sha256=tPHlY4L4n2KeVvWNVor3FrEa0uvKKWO1ltXuWCyJKzI,5141
1534
- homeassistant-stubs/components/number/const.pyi,sha256=ShzzDHwGWNtxW0wMZg9oX8wtg_-5l6776A-1OOEpSnY,3186
1538
+ homeassistant-stubs/components/number/const.pyi,sha256=XiUNuknjDbsxwG6TuHB_67BmYoLz5MN85TEdLHtj-PA,3270
1535
1539
  homeassistant-stubs/components/number/device_action.pyi,sha256=vmqWvjvUm7V-IwFs5a2fGpreW6pNSTuSXNQKitUr8vQ,1148
1536
1540
  homeassistant-stubs/components/number/reproduce_state.pyi,sha256=MAW63_kFuXtmd6ixpR55aIfAmKwz9jKN-x2j849eriw,721
1537
1541
  homeassistant-stubs/components/number/significant_change.pyi,sha256=vxYM_BAV0hR-CpfJEnzzhx15zcNGVJTWS5kFcTZrbbA,877
@@ -1814,7 +1818,7 @@ homeassistant-stubs/components/recorder/table_managers/statistics_meta.pyi,sha25
1814
1818
  homeassistant-stubs/components/recorder/tasks.pyi,sha256=i0yeMaPguT56FQLE_2bTkzQN3sUm2TgQsXsr1CRuyng,6538
1815
1819
  homeassistant-stubs/components/recorder/util.pyi,sha256=apl91ruzRPGFB1iMPTVMOWKIZvU1-kw0QA4KwoAbZu4,5601
1816
1820
  homeassistant-stubs/components/recorder/websocket_api.pyi,sha256=bFolq0vi2ceTxe_nGfVz6ONpmLDwPkk5Dx-481hP97g,4640
1817
- homeassistant-stubs/components/remote/__init__.pyi,sha256=GmZbU7hY--NDSiz4ENVkbhoJdae4xoQZeSWqgSfUtBg,4005
1821
+ homeassistant-stubs/components/remote/__init__.pyi,sha256=d2lTo5DzibSJ4HiMonB2Fr7XFJP_X0Vmp4p_AckCAJ0,4090
1818
1822
  homeassistant-stubs/components/remote/device_action.pyi,sha256=6Vfp_kSun-CL4YEEv4I_O2A81JnXangKitq86wbdOqY,827
1819
1823
  homeassistant-stubs/components/remote/device_condition.pyi,sha256=PjpIeqIXc4BrnDcNNu1cqcmtcGbPeumAd5XnR2-WYi4,817
1820
1824
  homeassistant-stubs/components/remote/device_trigger.pyi,sha256=uC5UaBHAFOgtfm8E-yV6NM6nrgoZhsNG9COx_7KkZLY,887
@@ -1966,7 +1970,7 @@ homeassistant-stubs/components/sensirion_ble/config_flow.pyi,sha256=W-uzTO6MLQ2y
1966
1970
  homeassistant-stubs/components/sensirion_ble/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
1967
1971
  homeassistant-stubs/components/sensirion_ble/sensor.pyi,sha256=JZDkf6KATog2IFSxFo714CPPPD663lm5bJq7G1WxnJE,2052
1968
1972
  homeassistant-stubs/components/sensor/__init__.pyi,sha256=lePiMsceiQuTOIpcniGokAHWJTA3wpGLtL4b9WKlw6U,5648
1969
- homeassistant-stubs/components/sensor/const.pyi,sha256=_60FuSVK41Y8PiX_Ig636gd0aFsix8grBebbFp03yZM,4010
1973
+ homeassistant-stubs/components/sensor/const.pyi,sha256=UkHQha_qKUgt5DXSFYnqpJnUtK5HI02pWJXFh6IMF_Y,4094
1970
1974
  homeassistant-stubs/components/sensor/device_condition.pyi,sha256=zJK9kGtiNx8E6tyTxAkGicAoyCux-F7DKifgg_PdIF4,2566
1971
1975
  homeassistant-stubs/components/sensor/device_trigger.pyi,sha256=MuM78NZhHS3mleMvvQyc60PPVqo88WJ0_SAGMC1IIG8,2564
1972
1976
  homeassistant-stubs/components/sensor/group.pyi,sha256=TsVwaBs1B7CumwL6HDFgh0GggSrltGfLGTBxeXIR9aA,284
@@ -1995,9 +1999,9 @@ homeassistant-stubs/components/shelly/bluetooth/__init__.pyi,sha256=TtiWeCif1sx6
1995
1999
  homeassistant-stubs/components/shelly/bluetooth/scanner.pyi,sha256=ibwU2wjCin9VPt58gFxx_5we5kcSZ0dnH8nRZp4mvc0,347
1996
2000
  homeassistant-stubs/components/shelly/button.pyi,sha256=1qCVY4e8-q8235vv0T4EtlG2xS0xtohK2cg07b7CneQ,2879
1997
2001
  homeassistant-stubs/components/shelly/climate.pyi,sha256=NhYtsdVl_8qfzP3uu-ZBbXpKgIrlbqxGF9cPJIUMt-Y,5439
1998
- homeassistant-stubs/components/shelly/config_flow.pyi,sha256=aBaJ2mKyxhTxniNiA2sehBCsDKWqZv_HxYVAK1cM-V4,3012
1999
- homeassistant-stubs/components/shelly/const.pyi,sha256=oGb_F4mZYWtpU4S8U4yDOd6iXE-FpL2ga0beuLQGr8I,2094
2000
- homeassistant-stubs/components/shelly/coordinator.pyi,sha256=Jqo36rs6LVY5NAwgP2X7rYdsAwdmHRqXP5P5ZhbdBOU,6671
2002
+ homeassistant-stubs/components/shelly/config_flow.pyi,sha256=zkwvQOisK_taWpjIOe6n2PzMDMrGteVpNnk8H4kJfGo,3034
2003
+ homeassistant-stubs/components/shelly/const.pyi,sha256=MCR17ZyLn9d6F3Z6kwMv6Liw4DrvgDAa_oH2Nnz0lQs,2108
2004
+ homeassistant-stubs/components/shelly/coordinator.pyi,sha256=q5M6r4ZF9QkexPHlRFwiJHLkOqzNaQD3W2oEWmdmjds,6693
2001
2005
  homeassistant-stubs/components/shelly/cover.pyi,sha256=jD8tHiY_1gmiiNvR-NiF4Y1ecA-E-GdWaT6uFC8FEsc,2786
2002
2006
  homeassistant-stubs/components/shelly/device_trigger.pyi,sha256=pXIeDnIMtGs_ZkJV8fvJG8kYkaTrZ6RW7YnCjKWxZNE,1988
2003
2007
  homeassistant-stubs/components/shelly/diagnostics.pyi,sha256=tylnHfNliUxiw2sC_ycJRxg6ShUEYZNlYTKZjWWQLmo,733
@@ -2009,7 +2013,7 @@ homeassistant-stubs/components/shelly/number.pyi,sha256=30sCn7n0lpCYJv-YQN3YDbvt
2009
2013
  homeassistant-stubs/components/shelly/sensor.pyi,sha256=YQb4rNr6xlCVxaDAQTYk_83YDqxPDvoO8oIryjRsvKY,6005
2010
2014
  homeassistant-stubs/components/shelly/switch.pyi,sha256=xwSr4tSU9zba_baQochAFSOmwFRSZFGsgz1XaH6Otsg,3795
2011
2015
  homeassistant-stubs/components/shelly/update.pyi,sha256=tLbPlYSmYIIh5bD8OHOSe32H3ToyuliHuG-WbekY7UI,4901
2012
- homeassistant-stubs/components/shelly/utils.pyi,sha256=cuN8O-l3HV4dwybNUbCSdsvlqtoPyEW-9LGK9OauRSw,3919
2016
+ homeassistant-stubs/components/shelly/utils.pyi,sha256=fDE_ZWExR9DRETtJKg7GAcDt1apRCu_FVxpMdDBA1KU,3941
2013
2017
  homeassistant-stubs/components/shelly/valve.pyi,sha256=9u0bm1uUE4aFcu_v4AKV4Hxfc_Pm7oT75F1P1EeWyds,2350
2014
2018
  homeassistant-stubs/components/simplepush/__init__.pyi,sha256=-8lZPejKAHG_rLTF88cQGU9NjPgjZz_exhG52mqF27A,704
2015
2019
  homeassistant-stubs/components/simplepush/config_flow.pyi,sha256=TFqXSrFpcS9fNKMUSxuy_jvZ_7n3ASfb69y7f8LRSzU,638
@@ -2135,7 +2139,7 @@ homeassistant-stubs/components/surepetcare/const.pyi,sha256=GTd4mgCeqWxDDccLYudb
2135
2139
  homeassistant-stubs/components/surepetcare/entity.pyi,sha256=QrvWOjn2VDZ-V-QZc-6drCo1HPm1EqJtkd3yMnexzJ0,905
2136
2140
  homeassistant-stubs/components/surepetcare/lock.pyi,sha256=sQH3L-8_sJ6Eu80MNiOaQ0lGw0p6BjegAZx9DblTZnY,1457
2137
2141
  homeassistant-stubs/components/surepetcare/sensor.pyi,sha256=yVTu51bzu8sPWC0rPRDiSZ40EW9qBVInAZvNTrBqKJE,1900
2138
- homeassistant-stubs/components/switch/__init__.pyi,sha256=nN6FvdTRkThBonbTrxG_wcbJTn5zh1VfH1XrBBCti4k,2670
2142
+ homeassistant-stubs/components/switch/__init__.pyi,sha256=rzKU47KohZ0d8qScPTERBmsZjxNsikAcF_aaohGiipc,2755
2139
2143
  homeassistant-stubs/components/switch/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
2140
2144
  homeassistant-stubs/components/switch/device_action.pyi,sha256=6Vfp_kSun-CL4YEEv4I_O2A81JnXangKitq86wbdOqY,827
2141
2145
  homeassistant-stubs/components/switch/device_condition.pyi,sha256=PjpIeqIXc4BrnDcNNu1cqcmtcGbPeumAd5XnR2-WYi4,817
@@ -2461,7 +2465,7 @@ homeassistant-stubs/components/wallbox/lock.pyi,sha256=HObkePNPNpmQiou-5_dQUU4sS
2461
2465
  homeassistant-stubs/components/wallbox/number.pyi,sha256=SisTjV_x0sFQ9gX5ar1tMzVhH4vI7_3vEwmNZCuUXoI,2784
2462
2466
  homeassistant-stubs/components/wallbox/sensor.pyi,sha256=5ArC5jGk7PcmeLx7NynEWsCxBQuJcI5n3Ani41FO3X4,2907
2463
2467
  homeassistant-stubs/components/wallbox/switch.pyi,sha256=zBVdnHpvIMeX9IQqWDS5XLxBfxy8WCgcoiL--lhcCHc,1425
2464
- homeassistant-stubs/components/water_heater/__init__.pyi,sha256=q4gkfdSGSg1dWtace9OoLdOXQnZm3iEUVIGamFud0_s,5898
2468
+ homeassistant-stubs/components/water_heater/__init__.pyi,sha256=vRsc29sDfPkyh1kpf0Ix4mz29lI_aumrkSKSKydNVQE,5983
2465
2469
  homeassistant-stubs/components/water_heater/device_action.pyi,sha256=12MBH__-i4CT6Rvdh22IT7M6SV-mi4MSHQrgsg1htU8,1020
2466
2470
  homeassistant-stubs/components/water_heater/group.pyi,sha256=4CmWktOg5zaqKICuxz8YYAx8Z0jkwLcERjWpEltiy_Y,550
2467
2471
  homeassistant-stubs/components/water_heater/reproduce_state.pyi,sha256=nHSt7opQO7-0NyM-ydiRt224v6DEKlIGcsIdCtTRw-Q,1267
@@ -2629,9 +2633,9 @@ homeassistant-stubs/components/zwave_js/triggers/value_updated.pyi,sha256=G4qlSH
2629
2633
  homeassistant-stubs/components/zwave_js/update.pyi,sha256=DZ89qey4VhEIz4DzjIi5tNowLsJcyz6I-h6zSysXJ10,3847
2630
2634
  homeassistant-stubs/config.pyi,sha256=e20xTPLR_xL6Dl1GeBBbOk51Go2X_WCpCe_3yQRaCmg,7766
2631
2635
  homeassistant-stubs/config_entries.pyi,sha256=ru-8BU8QMRc8GVg6cQ0StViR97ZY_zqo4gkqeVtyRUg,15292
2632
- homeassistant-stubs/const.pyi,sha256=1BR6VlWq78lB03hdxa8y3NSnES2vLhV4rIXZrUDCbaA,23578
2633
- homeassistant-stubs/core.pyi,sha256=t6q3sjl4Onh80a-iKylt8YPxzvq9DIFSrE1t_J87cwM,19074
2634
- homeassistant-stubs/data_entry_flow.pyi,sha256=C9AIBWNNjtYRxO5FzLoS2kfsm3pmBgg5z_6mSfVMKhU,6586
2636
+ homeassistant-stubs/const.pyi,sha256=k4ln5wDPfZWGBx8-6uot0b4Pj3Qce3DSSgaSwgWArig,23913
2637
+ homeassistant-stubs/core.pyi,sha256=qasq_4PULepzydli-DpGKEhnBd55K-LL_3JGaZ-7nbY,19338
2638
+ homeassistant-stubs/data_entry_flow.pyi,sha256=0KL3ycHNidaCHHaIWaG56wXbkZtZR_oept8wZnsU6G0,6671
2635
2639
  homeassistant-stubs/exceptions.pyi,sha256=-kChnLCzJ4p4UmZ7kMGTkqbQoV3e45oxXHerXD-IZMc,3419
2636
2640
  homeassistant-stubs/generated/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2637
2641
  homeassistant-stubs/generated/application_credentials.pyi,sha256=lfr55vRqxwVIC88Ug5-KzbdUEeqzuT2JSyaILFr1OlM,70
@@ -2657,8 +2661,8 @@ homeassistant-stubs/helpers/config_entry_oauth2_flow.pyi,sha256=uiBSQVVB4I5Y9epZ
2657
2661
  homeassistant-stubs/helpers/config_validation.pyi,sha256=FIy-uGAnLMcQtqczEnHE0OqtVTFD938MFxmx39fCQIw,10392
2658
2662
  homeassistant-stubs/helpers/data_entry_flow.pyi,sha256=QrMSa551haZShY3-lHallfYWpc7zsqG7bU3ix6t4UgQ,1084
2659
2663
  homeassistant-stubs/helpers/debounce.pyi,sha256=0QFUvDJCzsjdT3YjPGUzfEiH5NY-gFeT_LtHsDs8NFg,1174
2660
- homeassistant-stubs/helpers/deprecation.pyi,sha256=dJ_49sZIR06X6kOeMzukh0o72hIsqoGjSB4Dom7fzRQ,1865
2661
- homeassistant-stubs/helpers/device_registry.pyi,sha256=Na8WpFVvmh2Yd_-f3kDnxdCQtpuV7i0KsOlMBR2Namg,9331
2664
+ homeassistant-stubs/helpers/deprecation.pyi,sha256=Qm-yOA8TALad1pHGAnw2NliTLgbTPcv8hZO1cu9HMgI,1567
2665
+ homeassistant-stubs/helpers/device_registry.pyi,sha256=184ow-Zbs_RB7OC9wgD8kWP14E9bZe6_vr1XLV6_j9A,9416
2662
2666
  homeassistant-stubs/helpers/discovery.pyi,sha256=ss9qo-iZqaX2g-5RGNJy7dvzoYavMHBHtNYVq_1aXJI,1628
2663
2667
  homeassistant-stubs/helpers/discovery_flow.pyi,sha256=L1pHTaSYLIDv97LBXRcW9Xu65P0kafqpblDm7ESxrCM,1331
2664
2668
  homeassistant-stubs/helpers/dispatcher.pyi,sha256=NPnzBf3jFBIK5LlfDBt8oHyTJsX57BHnfXCegTh4iHw,1217
@@ -2754,7 +2758,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=jFcwagnGj4ygvqVGNXDI5Afa9wRM0qOA
2754
2758
  homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
2755
2759
  homeassistant-stubs/util/yaml/loader.pyi,sha256=rpwKMMMMYynwcs_IWf0ZvKVp6zoqDJghwROm1p03Jzs,4125
2756
2760
  homeassistant-stubs/util/yaml/objects.pyi,sha256=89c0boOGMdQvHxVk7Xs42DKMj3ldlozxjrpiV74RkGY,457
2757
- homeassistant_stubs-2024.1.0b8.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
2758
- homeassistant_stubs-2024.1.0b8.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
2759
- homeassistant_stubs-2024.1.0b8.dist-info/METADATA,sha256=ar2dsJ8b4yZN7luRGrs7e1e_f2-ppQ3vt8vAMz_5DOU,3066
2760
- homeassistant_stubs-2024.1.0b8.dist-info/RECORD,,
2761
+ homeassistant_stubs-2024.1.1.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
2762
+ homeassistant_stubs-2024.1.1.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
2763
+ homeassistant_stubs-2024.1.1.dist-info/METADATA,sha256=F1J4U-SVTvQyuAoSFal3rPTSlQv8oL-OvZp2XqgGTF4,3062
2764
+ homeassistant_stubs-2024.1.1.dist-info/RECORD,,