homeassistant-stubs 2025.9.1__py3-none-any.whl → 2025.9.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of homeassistant-stubs might be problematic. Click here for more details.

@@ -1,4 +1,4 @@
1
- from .const import CONF_LOGIN_DATA as CONF_LOGIN_DATA, COUNTRY_DOMAINS as COUNTRY_DOMAINS, DOMAIN as DOMAIN, _LOGGER as _LOGGER
1
+ from .const import CONF_LOGIN_DATA as CONF_LOGIN_DATA, CONF_SITE as CONF_SITE, COUNTRY_DOMAINS as COUNTRY_DOMAINS, DOMAIN as DOMAIN, _LOGGER as _LOGGER
2
2
  from .coordinator import AmazonConfigEntry as AmazonConfigEntry, AmazonDevicesCoordinator as AmazonDevicesCoordinator
3
3
  from .services import async_setup_services as async_setup_services
4
4
  from _typeshed import Incomplete
@@ -3,5 +3,6 @@ from _typeshed import Incomplete
3
3
  _LOGGER: Incomplete
4
4
  DOMAIN: str
5
5
  CONF_LOGIN_DATA: str
6
+ CONF_SITE: str
6
7
  DEFAULT_DOMAIN: str
7
8
  COUNTRY_DOMAINS: Incomplete
@@ -6,8 +6,10 @@ from collections.abc import Mapping
6
6
  from homeassistant.config_entries import ConfigEntry as ConfigEntry, ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, OptionsFlow as OptionsFlow
7
7
  from homeassistant.const import CONF_HOST as CONF_HOST, CONF_NAME as CONF_NAME, CONF_PASSWORD as CONF_PASSWORD, CONF_USERNAME as CONF_USERNAME
8
8
  from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
9
+ from homeassistant.data_entry_flow import AbortFlow as AbortFlow
9
10
  from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
10
11
  from homeassistant.helpers.aiohttp_client import async_get_clientsession as async_get_clientsession
12
+ from homeassistant.helpers.device_registry import format_mac as format_mac
11
13
  from homeassistant.helpers.service_info.zeroconf import ZeroconfServiceInfo as ZeroconfServiceInfo
12
14
  from homeassistant.helpers.typing import VolDictType as VolDictType
13
15
  from typing import Any
@@ -26,6 +28,7 @@ class DoorBirdConfigFlow(ConfigFlow, domain=DOMAIN):
26
28
  reauth_entry: ConfigEntry
27
29
  discovery_schema: vol.Schema | None
28
30
  def __init__(self) -> None: ...
31
+ async def _async_verify_existing_device_for_discovery(self, existing_entry: ConfigEntry, host: str, macaddress: str) -> None: ...
29
32
  async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> ConfigFlowResult: ...
30
33
  async def async_step_reauth_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
31
34
  async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
@@ -25,7 +25,7 @@ class AutomowerMessageEventEntity(AutomowerBaseEntity, EventEntity):
25
25
  _attr_event_types = ERROR_KEYS
26
26
  _attr_unique_id: Incomplete
27
27
  websocket_alive: bool
28
- def __init__(self, mower_id: str, coordinator: AutomowerDataUpdateCoordinator) -> None: ...
28
+ def __init__(self, mower_id: str, coordinator: AutomowerDataUpdateCoordinator, *, websocket_alive: bool | None = None) -> None: ...
29
29
  @property
30
30
  def available(self) -> bool: ...
31
31
  @callback
@@ -1,6 +1,5 @@
1
1
  from .const import CONF_CANDLE_LIGHT_MINUTES as CONF_CANDLE_LIGHT_MINUTES, CONF_DIASPORA as CONF_DIASPORA, CONF_HAVDALAH_OFFSET_MINUTES as CONF_HAVDALAH_OFFSET_MINUTES, DEFAULT_CANDLE_LIGHT as DEFAULT_CANDLE_LIGHT, DEFAULT_DIASPORA as DEFAULT_DIASPORA, DEFAULT_HAVDALAH_OFFSET_MINUTES as DEFAULT_HAVDALAH_OFFSET_MINUTES, DEFAULT_LANGUAGE as DEFAULT_LANGUAGE, DOMAIN as DOMAIN
2
- from .coordinator import JewishCalendarData as JewishCalendarData, JewishCalendarUpdateCoordinator as JewishCalendarUpdateCoordinator
3
- from .entity import JewishCalendarConfigEntry as JewishCalendarConfigEntry
2
+ from .entity import JewishCalendarConfigEntry as JewishCalendarConfigEntry, JewishCalendarData as JewishCalendarData
4
3
  from .services import async_setup_services as async_setup_services
5
4
  from _typeshed import Incomplete
6
5
  from homeassistant.const import CONF_ELEVATION as CONF_ELEVATION, CONF_LANGUAGE as CONF_LANGUAGE, CONF_LATITUDE as CONF_LATITUDE, CONF_LONGITUDE as CONF_LONGITUDE, CONF_TIME_ZONE as CONF_TIME_ZONE, Platform as Platform
@@ -1,24 +1,44 @@
1
1
  import abc
2
2
  import datetime as dt
3
3
  from .const import DOMAIN as DOMAIN
4
- from .coordinator import JewishCalendarConfigEntry as JewishCalendarConfigEntry, JewishCalendarUpdateCoordinator as JewishCalendarUpdateCoordinator
5
4
  from _typeshed import Incomplete
6
5
  from abc import abstractmethod
7
- from hdate import Zmanim as Zmanim
6
+ from dataclasses import dataclass
7
+ from hdate import HDateInfo, Location as Location, Zmanim
8
+ from hdate.translator import Language as Language
9
+ from homeassistant.config_entries import ConfigEntry as ConfigEntry
8
10
  from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, callback as callback
9
11
  from homeassistant.helpers import event as event
10
12
  from homeassistant.helpers.device_registry import DeviceEntryType as DeviceEntryType, DeviceInfo as DeviceInfo
11
- from homeassistant.helpers.entity import EntityDescription as EntityDescription
12
- from homeassistant.helpers.update_coordinator import CoordinatorEntity as CoordinatorEntity
13
+ from homeassistant.helpers.entity import Entity as Entity, EntityDescription as EntityDescription
13
14
 
14
- class JewishCalendarEntity(CoordinatorEntity[JewishCalendarUpdateCoordinator], metaclass=abc.ABCMeta):
15
+ _LOGGER: Incomplete
16
+ type JewishCalendarConfigEntry = ConfigEntry[JewishCalendarData]
17
+
18
+ @dataclass
19
+ class JewishCalendarDataResults:
20
+ dateinfo: HDateInfo
21
+ zmanim: Zmanim
22
+
23
+ @dataclass
24
+ class JewishCalendarData:
25
+ language: Language
26
+ diaspora: bool
27
+ location: Location
28
+ candle_lighting_offset: int
29
+ havdalah_offset: int
30
+ results: JewishCalendarDataResults | None = ...
31
+
32
+ class JewishCalendarEntity(Entity, metaclass=abc.ABCMeta):
15
33
  _attr_has_entity_name: bool
16
34
  _attr_should_poll: bool
17
35
  _update_unsub: CALLBACK_TYPE | None
18
36
  entity_description: Incomplete
19
37
  _attr_unique_id: Incomplete
20
38
  _attr_device_info: Incomplete
39
+ data: Incomplete
21
40
  def __init__(self, config_entry: JewishCalendarConfigEntry, description: EntityDescription) -> None: ...
41
+ def make_zmanim(self, date: dt.date) -> Zmanim: ...
22
42
  async def async_added_to_hass(self) -> None: ...
23
43
  async def async_will_remove_from_hass(self) -> None: ...
24
44
  @abstractmethod
@@ -26,3 +46,4 @@ class JewishCalendarEntity(CoordinatorEntity[JewishCalendarUpdateCoordinator], m
26
46
  def _schedule_update(self) -> None: ...
27
47
  @callback
28
48
  def _update(self, now: dt.datetime | None = None) -> None: ...
49
+ def create_results(self, now: dt.datetime | None = None) -> None: ...
@@ -38,7 +38,7 @@ class JewishCalendarBaseSensor(JewishCalendarEntity, SensorEntity):
38
38
  _attr_entity_category: Incomplete
39
39
  entity_description: JewishCalendarBaseSensorDescription
40
40
  def _update_times(self, zmanim: Zmanim) -> list[dt.datetime | None]: ...
41
- def get_dateinfo(self) -> HDateInfo: ...
41
+ def get_dateinfo(self, now: dt.datetime | None = None) -> HDateInfo: ...
42
42
 
43
43
  class JewishCalendarSensor(JewishCalendarBaseSensor):
44
44
  entity_description: JewishCalendarSensorDescription
@@ -1,7 +1,7 @@
1
1
  import abc
2
2
  from ..const import DOMAIN as DOMAIN
3
3
  from .const import CONF_DATA as CONF_DATA
4
- from .migration import migrate_1_to_2 as migrate_1_to_2
4
+ from .migration import migrate_1_to_2 as migrate_1_to_2, migrate_2_1_to_2_2 as migrate_2_1_to_2_2
5
5
  from _typeshed import Incomplete
6
6
  from abc import ABC, abstractmethod
7
7
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
@@ -14,6 +14,7 @@ from typing import Any, Final, TypedDict
14
14
 
15
15
  _LOGGER: Incomplete
16
16
  STORAGE_VERSION: Final[int]
17
+ STORAGE_VERSION_MINOR: Final[int]
17
18
  STORAGE_KEY: Final[Incomplete]
18
19
  type KNXPlatformStoreModel = dict[str, dict[str, Any]]
19
20
  type KNXEntityStoreModel = dict[str, KNXPlatformStoreModel]
@@ -1,5 +1,7 @@
1
+ from ..const import CONF_RESPOND_TO_READ as CONF_RESPOND_TO_READ
1
2
  from homeassistant.const import Platform as Platform
2
3
  from typing import Any
3
4
 
4
5
  def migrate_1_to_2(data: dict[str, Any]) -> None: ...
5
6
  def _migrate_light_schema_1_to_2(light_knx_data: dict[str, Any]) -> None: ...
7
+ def migrate_2_1_to_2_2(data: dict[str, Any]) -> None: ...
@@ -19,8 +19,8 @@ class ModbusLight(BaseSwitch, LightEntity):
19
19
  _color_temp_address: int | None
20
20
  _attr_color_mode: Incomplete
21
21
  _attr_supported_color_modes: Incomplete
22
- _attr_min_color_temp_kelvin: Incomplete
23
- _attr_max_color_temp_kelvin: Incomplete
22
+ _attr_min_color_temp_kelvin: int
23
+ _attr_max_color_temp_kelvin: int
24
24
  def __init__(self, hass: HomeAssistant, hub: ModbusHub, config: dict[str, Any]) -> None: ...
25
25
  _attr_brightness: Incomplete
26
26
  _attr_color_temp_kelvin: Incomplete
@@ -1,5 +1,5 @@
1
1
  from . import Trackables as Trackables, TractiveClient as TractiveClient, TractiveConfigEntry as TractiveConfigEntry
2
- from .const import ATTR_BUZZER as ATTR_BUZZER, ATTR_LED as ATTR_LED, ATTR_LIVE_TRACKING as ATTR_LIVE_TRACKING, TRACKER_SWITCH_STATUS_UPDATED as TRACKER_SWITCH_STATUS_UPDATED
2
+ from .const import ATTR_BUZZER as ATTR_BUZZER, ATTR_LED as ATTR_LED, ATTR_LIVE_TRACKING as ATTR_LIVE_TRACKING, ATTR_POWER_SAVING as ATTR_POWER_SAVING, TRACKER_SWITCH_STATUS_UPDATED as TRACKER_SWITCH_STATUS_UPDATED
3
3
  from .entity import TractiveEntity as TractiveEntity
4
4
  from _typeshed import Incomplete
5
5
  from dataclasses import dataclass
@@ -25,7 +25,7 @@ class TractiveSwitch(TractiveEntity, SwitchEntity):
25
25
  _tracker: Incomplete
26
26
  _method: Incomplete
27
27
  def __init__(self, client: TractiveClient, item: Trackables, description: TractiveSwitchEntityDescription) -> None: ...
28
- _attr_available: bool
28
+ _attr_available: Incomplete
29
29
  _attr_is_on: Incomplete
30
30
  @callback
31
31
  def handle_status_update(self, event: dict[str, Any]) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: homeassistant-stubs
3
- Version: 2025.9.1
3
+ Version: 2025.9.3
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.13.2
21
- Requires-Dist: homeassistant==2025.9.1
21
+ Requires-Dist: homeassistant==2025.9.3
22
22
  Description-Content-Type: text/markdown
23
23
 
24
24
  [![CI](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml/badge.svg)](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
@@ -229,10 +229,10 @@ homeassistant-stubs/components/alexa/logbook.pyi,sha256=IhG7XLy2b-HwN29z5IdYjzse
229
229
  homeassistant-stubs/components/alexa/resources.pyi,sha256=xMQBaxEGbaPEoshHfFP63Y_1Cc4syY9_HUoq43G4JYk,3942
230
230
  homeassistant-stubs/components/alexa/smart_home.pyi,sha256=RmHUf67v2P6JgBBMf6YQ9qtbUVV-SrgWyW0TbhhjPtk,2615
231
231
  homeassistant-stubs/components/alexa/state_report.pyi,sha256=z6l9miD598LoKEdlMP2dQ-CtR5PYe3aZNTY4pxXWUvI,3567
232
- homeassistant-stubs/components/alexa_devices/__init__.pyi,sha256=vynmlaumQUjlYji4TJ5anL8u-BJY75whc8bmLoO9GeE,1017
232
+ homeassistant-stubs/components/alexa_devices/__init__.pyi,sha256=Jsp7aJCK7AUufTXp8IcOROGeUwWuRbTDToZvmJaW-LQ,1041
233
233
  homeassistant-stubs/components/alexa_devices/binary_sensor.pyi,sha256=VPfaNQ6tpM8vLlOefGfdG5v6XrsLnH7TR8e71pm3A1c,1362
234
234
  homeassistant-stubs/components/alexa_devices/config_flow.pyi,sha256=a7VQKF_45mfsJZwPaNUJe806sGTSsRWMJtFseuxnegs,1193
235
- homeassistant-stubs/components/alexa_devices/const.pyi,sha256=wE2gcCVQ2yNsj_-lK8KbIafnNeF8OxS8XxwQXlXK1bg,135
235
+ homeassistant-stubs/components/alexa_devices/const.pyi,sha256=GhMOGYFBllOq4hNVAWMXsSMahHd6nhe87hIh0jFYQ9U,150
236
236
  homeassistant-stubs/components/alexa_devices/coordinator.pyi,sha256=RS7MNdKpbWL5HybB3JUnWCe__2ebWawhmFpG34pww9E,1059
237
237
  homeassistant-stubs/components/alexa_devices/diagnostics.pyi,sha256=bRYiRMxTdgbGeSTQw0w0S91vwU2sCBuBNfHvyt_mgug,870
238
238
  homeassistant-stubs/components/alexa_devices/entity.pyi,sha256=1oxFqfyw52JjClztThBJdtXj2BeC3_KWt0YPhsgiHrQ,914
@@ -939,7 +939,7 @@ homeassistant-stubs/components/dnsip/sensor.pyi,sha256=n-Q2nXshUsBgnxOxSBNyuxCMk
939
939
  homeassistant-stubs/components/doorbird/__init__.pyi,sha256=5M21amKULLH3KQy_pR0ViRVFJ_BI_1kCkjdDLqEAhKQ,1405
940
940
  homeassistant-stubs/components/doorbird/button.pyi,sha256=qRuOxE0nir81RxQW4XFAHoSEXpU6cFucPd7XunIWvbQ,1599
941
941
  homeassistant-stubs/components/doorbird/camera.pyi,sha256=TvQ64LFfXL1qX5MJm9xbJ0KQPZddHWpdU7XN7DQTkPQ,1483
942
- homeassistant-stubs/components/doorbird/config_flow.pyi,sha256=XJIlPxyvZnipILBkn2AKUxhJ7i8_a90vJOErgfTwXsw,2567
942
+ homeassistant-stubs/components/doorbird/config_flow.pyi,sha256=oIF1wS1CQVfW0r_a-m6m5Q3WdgmkQl7D-p6cZIPVkZc,2841
943
943
  homeassistant-stubs/components/doorbird/const.pyi,sha256=kkbFH-Cw4UY7xWeQ8qIWWqrXMSQtC74gKvKkU3yhYDA,571
944
944
  homeassistant-stubs/components/doorbird/device.pyi,sha256=GQwHKavHNTZswh-cDCFh7fN33_i6g7ilNkel6-pqrPg,2489
945
945
  homeassistant-stubs/components/doorbird/entity.pyi,sha256=uRVVcm9n046_IxDTOEnrxd4VXunr1TmaFeDhgyvellw,801
@@ -1688,7 +1688,7 @@ homeassistant-stubs/components/husqvarna_automower/coordinator.pyi,sha256=Yuc2Gt
1688
1688
  homeassistant-stubs/components/husqvarna_automower/device_tracker.pyi,sha256=N8tQiMIx3L8WrK0E0-DNIFPAYlwxYpCFVGCf02Eh6dw,1003
1689
1689
  homeassistant-stubs/components/husqvarna_automower/diagnostics.pyi,sha256=27vHm8uRvtXHDGVjJHVsd1eqPhK-VK2iogXJxmsM938,783
1690
1690
  homeassistant-stubs/components/husqvarna_automower/entity.pyi,sha256=pqF93QqTbk7vBz1ulQBfjOsFm4uJNo2uPlDT7oLX7Gc,2040
1691
- homeassistant-stubs/components/husqvarna_automower/event.pyi,sha256=HZL8uTDiuuZGIFugziJxPjiTw43b0mjP8p4etwWu3_M,1695
1691
+ homeassistant-stubs/components/husqvarna_automower/event.pyi,sha256=vOyWe-6Spr3XCJvffrqxDet-bsos2d7uN6QUZqwAZOU,1735
1692
1692
  homeassistant-stubs/components/husqvarna_automower/lawn_mower.pyi,sha256=i9ggofitDjD9KBnyW3YLRg7jPU0JW5KdjulRjgQQlUk,2121
1693
1693
  homeassistant-stubs/components/husqvarna_automower/number.pyi,sha256=DVh85zQ425v9jzrHtw4GNprKTGq9aBzQVAO0K9Nw80k,3294
1694
1694
  homeassistant-stubs/components/husqvarna_automower/select.pyi,sha256=Whvz6yFFi3jo_VCdUUWATFlu0RuMfqNtUjs7LMlNT4c,1251
@@ -1858,14 +1858,13 @@ homeassistant-stubs/components/jellyfin/media_player.pyi,sha256=nFgJ18aq5YRer-PJ
1858
1858
  homeassistant-stubs/components/jellyfin/media_source.pyi,sha256=4iI8ZsBxp-ZYARdmyFJfiMmXTLNg_ebs5zwKPieHze4,4284
1859
1859
  homeassistant-stubs/components/jellyfin/remote.pyi,sha256=NtAVG_xLQEnNh5Rm2jei8G0Mcy7v7Ps645kdVwnFmDw,1215
1860
1860
  homeassistant-stubs/components/jellyfin/sensor.pyi,sha256=UkROwLGJbV4rCBzHdtdC7P093HLxz6EK2iFoXZzNMGo,1477
1861
- homeassistant-stubs/components/jewish_calendar/__init__.pyi,sha256=ygjI9u1Sheuf3IiCSjFv0uvsFEESZpD5S_c0jlNHNbI,1516
1861
+ homeassistant-stubs/components/jewish_calendar/__init__.pyi,sha256=DrrdEAsA14jJlDl9ki4x9-sciqnein4zKQQPVM_2-C4,1424
1862
1862
  homeassistant-stubs/components/jewish_calendar/binary_sensor.pyi,sha256=Ig6C_zM8xwFXjjCACiVTWVlPzy8-rG1nbeDfzOIXAI8,1440
1863
1863
  homeassistant-stubs/components/jewish_calendar/config_flow.pyi,sha256=UaNCZmdrGIHvtuMgfXfi7xuo1decVvvGv06AC8H14PM,2029
1864
1864
  homeassistant-stubs/components/jewish_calendar/const.pyi,sha256=dTqsUsfW8XlvWAYzpy7-ab6L27rrrLKq6CVMZ-iv5v4,320
1865
- homeassistant-stubs/components/jewish_calendar/coordinator.pyi,sha256=4IRNaSU6xv1uetLk29PHC4JiGronieIDw9FU5tp8wsE,1673
1866
1865
  homeassistant-stubs/components/jewish_calendar/diagnostics.pyi,sha256=HTWTg_O5KoQ4lDzcHaHHxgMiIQrUHKn3voNjtxaUNjc,575
1867
- homeassistant-stubs/components/jewish_calendar/entity.pyi,sha256=vg_rFMhOAKvHhZRATbuLONP8DajCiEiOUDlszyWmeTs,1482
1868
- homeassistant-stubs/components/jewish_calendar/sensor.pyi,sha256=nVn8_XdVeSONkjDWSdmaAWIQKFBwXEBhY4J-otHs45M,2828
1866
+ homeassistant-stubs/components/jewish_calendar/entity.pyi,sha256=UUHEdRklvi95kibc-fl01Jmz4U0pEf3g0hqM8bYAvUA,1928
1867
+ homeassistant-stubs/components/jewish_calendar/sensor.pyi,sha256=hlla6sG4LOu9Zn4sTldiuWzU66X0gh5M1qW5uTeI4Zc,2860
1869
1868
  homeassistant-stubs/components/jewish_calendar/services.pyi,sha256=MaeZZb-sq0TTbGyT_GGIhgRUdCKOP1L6O0BuWayBWiQ,898
1870
1869
  homeassistant-stubs/components/jvc_projector/__init__.pyi,sha256=sh-EsPzGEZEtqhz-gi1KolvkRy08HTpZIkoP_8e-sUY,751
1871
1870
  homeassistant-stubs/components/jvc_projector/binary_sensor.pyi,sha256=3VZ4tXMOvlm3mHD9Ky7cdtNPWPT0c7taDA7xWw1PPIA,912
@@ -1922,13 +1921,13 @@ homeassistant-stubs/components/knx/validation.pyi,sha256=vT1rAC3zea2V_wWie61Wv0j
1922
1921
  homeassistant-stubs/components/knx/weather.pyi,sha256=vBhS-LWljhVZzhtgu7Af4CDimUEbsvAXwvELauVzEr0,1869
1923
1922
  homeassistant-stubs/components/knx/websocket.pyi,sha256=P9Bqr49CUs2PFIwAFhNr7ckCC6GsMI_q7-0KkKgXVqY,4956
1924
1923
  homeassistant-stubs/components/knx/storage/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1925
- homeassistant-stubs/components/knx/storage/config_store.pyi,sha256=GKhAcuf3vrWTwfN9PP0iKsYBdjAx6TMJ4moasRCYD8E,2278
1924
+ homeassistant-stubs/components/knx/storage/config_store.pyi,sha256=9Sq8qk6jhAQ7-2BtcHCsOmsPjLczLqkq8xpOE0i5SOc,2354
1926
1925
  homeassistant-stubs/components/knx/storage/const.pyi,sha256=r9dZuHEOHF9LsA7Mu-gm6-ANtSvXSvIDjye4yRfuSOM,932
1927
1926
  homeassistant-stubs/components/knx/storage/entity_store_schema.pyi,sha256=lVRTaWIQBgzan_vrxKyCLzp1rqex9c4oDkNo41Afg4I,2647
1928
1927
  homeassistant-stubs/components/knx/storage/entity_store_validation.pyi,sha256=oKK9FLT_HD5nnhMvTVDYs2s61a9Q8JcClFKnIi_rSK0,806
1929
1928
  homeassistant-stubs/components/knx/storage/keyring.pyi,sha256=oTrE8GVCNVbPdtEwfER_jEpK_WT9aNzMYJAsF5ko1iA,548
1930
1929
  homeassistant-stubs/components/knx/storage/knx_selector.pyi,sha256=SrVy9H4_7P5tzKI2KXyuw9LxkzRiddR3evsqCZk0WY8,3025
1931
- homeassistant-stubs/components/knx/storage/migration.pyi,sha256=-pS-8wPDcJWBtdJvEgiB-Kcxecp8-bFVgv-Azv1cxt4,209
1930
+ homeassistant-stubs/components/knx/storage/migration.pyi,sha256=qn42Vib8md8lG3DR9L3C7di-GixcAXbIcsROYEP5F3o,332
1932
1931
  homeassistant-stubs/components/knx/storage/serialize.pyi,sha256=ccwT9BlvIQZORd6gH1vJjkEKvfcgOYlvW_wECjnPW9M,652
1933
1932
  homeassistant-stubs/components/knx/storage/util.pyi,sha256=p3iehEBkSsSXm0tVSE394RDVG3kGnXUnbwnNjsiCPPA,877
1934
1933
  homeassistant-stubs/components/kraken/__init__.pyi,sha256=o0T4YLX6oydQI0gPOiM0xc_fTm9RD4ssErMQSseB4BI,1815
@@ -2308,7 +2307,7 @@ homeassistant-stubs/components/modbus/const.pyi,sha256=3hAM9z0HMqTMOA9DENsoqyeyR
2308
2307
  homeassistant-stubs/components/modbus/cover.pyi,sha256=layBR9EOJ5E5vRkJ9qLn0-lzShnhIm9VzJboSqpw2zo,2353
2309
2308
  homeassistant-stubs/components/modbus/entity.pyi,sha256=eKahg9qXRdlOQXEOeFnzBAj6hGC6LgZnTxb74NTG-O4,4853
2310
2309
  homeassistant-stubs/components/modbus/fan.pyi,sha256=f7W9472QXXs97DvsPhZQTHJhIra85kRkfGT9nicdImY,1120
2311
- homeassistant-stubs/components/modbus/light.pyi,sha256=HQNrohjB8zG1Kak0E_cCTKSXyy-7QnkYNEalCbWPaVI,2750
2310
+ homeassistant-stubs/components/modbus/light.pyi,sha256=S0lfzVsXlJLXFH0LvXGw1EdWE5pPBUbIQzn_PoKgDtc,2736
2312
2311
  homeassistant-stubs/components/modbus/modbus.pyi,sha256=cc-TiLWrTXVvhpB9FyDt2n4BOLZbDi0DW2PAnYziCj4,3449
2313
2312
  homeassistant-stubs/components/modbus/sensor.pyi,sha256=ar_bzgW4QmpXIbp5amug7BY3FahTKfgXN3TNQtLDuhE,2665
2314
2313
  homeassistant-stubs/components/modbus/switch.pyi,sha256=g3ErcwRr6qX_S75prdrZbWTTec2rprv86jEeF-vSZhg,830
@@ -3812,7 +3811,7 @@ homeassistant-stubs/components/tractive/device_tracker.pyi,sha256=IKreeWzDU6nNaO
3812
3811
  homeassistant-stubs/components/tractive/diagnostics.pyi,sha256=5ptVNUawOfw2KuGs6R8emQY6WI8cg2gFOwKbc_CTLCA,500
3813
3812
  homeassistant-stubs/components/tractive/entity.pyi,sha256=0YiGkyy3yMBGcYUpcJthCXx6Y1kcBRMvQgfLyVyoU34,1054
3814
3813
  homeassistant-stubs/components/tractive/sensor.pyi,sha256=EuhV1KJeyW8xFml_UND-7EDVGhIFtD4D7e5L-ZTYMJg,2322
3815
- homeassistant-stubs/components/tractive/switch.pyi,sha256=UI4Q-uLoqWZzmpAvuMg2VnffJJFtszhXYRcu9UkKaf8,2046
3814
+ homeassistant-stubs/components/tractive/switch.pyi,sha256=td6_QQ8iNOLWvDO6eAtmmDZgw6uQB48gdKZ_y3z6Ajw,2092
3816
3815
  homeassistant-stubs/components/tradfri/__init__.pyi,sha256=59izwUdciToHIP64YhmKxE8uTTANT7Xaz_YyFNrsvF0,1629
3817
3816
  homeassistant-stubs/components/tradfri/config_flow.pyi,sha256=URutEsGK-J98lpGDHo4t3y2FOQCXRNnQZDQ63jp2gL8,1398
3818
3817
  homeassistant-stubs/components/tradfri/const.pyi,sha256=rfCBf7j9UwiaXEKUgILSqKPQIx5rUpRzawztNAY3dtk,184
@@ -4390,7 +4389,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
4390
4389
  homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
4391
4390
  homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
4392
4391
  homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
4393
- homeassistant_stubs-2025.9.1.dist-info/METADATA,sha256=s1kYd0V4FOe1RusnYxuJVG-4sY8EYOUUlBzy0uaE4QU,2948
4394
- homeassistant_stubs-2025.9.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4395
- homeassistant_stubs-2025.9.1.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4396
- homeassistant_stubs-2025.9.1.dist-info/RECORD,,
4392
+ homeassistant_stubs-2025.9.3.dist-info/METADATA,sha256=sxcJEeo0PHEvZjIFabCHssBNNXgIzYs74C-r9Px8z20,2948
4393
+ homeassistant_stubs-2025.9.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4394
+ homeassistant_stubs-2025.9.3.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4395
+ homeassistant_stubs-2025.9.3.dist-info/RECORD,,
@@ -1,41 +0,0 @@
1
- import datetime as dt
2
- from .const import DOMAIN as DOMAIN
3
- from _typeshed import Incomplete
4
- from dataclasses import dataclass
5
- from hdate import HDateInfo, Location as Location, Zmanim
6
- from hdate.translator import Language as Language
7
- from homeassistant.config_entries import ConfigEntry as ConfigEntry
8
- from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, HomeAssistant as HomeAssistant, callback as callback
9
- from homeassistant.helpers import event as event
10
- from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator
11
-
12
- _LOGGER: Incomplete
13
- type JewishCalendarConfigEntry = ConfigEntry[JewishCalendarUpdateCoordinator]
14
-
15
- @dataclass
16
- class JewishCalendarData:
17
- language: Language
18
- diaspora: bool
19
- location: Location
20
- candle_lighting_offset: int
21
- havdalah_offset: int
22
- dateinfo: HDateInfo | None = ...
23
- zmanim: Zmanim | None = ...
24
-
25
- class JewishCalendarUpdateCoordinator(DataUpdateCoordinator[JewishCalendarData]):
26
- config_entry: JewishCalendarConfigEntry
27
- event_unsub: CALLBACK_TYPE | None
28
- data: Incomplete
29
- _unsub_update: CALLBACK_TYPE | None
30
- def __init__(self, hass: HomeAssistant, config_entry: JewishCalendarConfigEntry, data: JewishCalendarData) -> None: ...
31
- async def _async_update_data(self) -> JewishCalendarData: ...
32
- @callback
33
- def async_schedule_future_update(self) -> None: ...
34
- @callback
35
- def _handle_midnight_update(self, _now: dt.datetime) -> None: ...
36
- async def async_shutdown(self) -> None: ...
37
- def make_zmanim(self, date: dt.date) -> Zmanim: ...
38
- @property
39
- def zmanim(self) -> Zmanim: ...
40
- @property
41
- def dateinfo(self) -> HDateInfo: ...