homeassistant-stubs 2024.5.0b1__py3-none-any.whl → 2024.5.0b2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- homeassistant-stubs/components/aseko_pool_live/binary_sensor.pyi +0 -1
- homeassistant-stubs/components/matter/config_flow.pyi +4 -0
- homeassistant-stubs/components/shelly/coordinator.pyi +1 -1
- homeassistant-stubs/core.pyi +1 -0
- homeassistant-stubs/helpers/script.pyi +1 -1
- {homeassistant_stubs-2024.5.0b1.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.5.0b1.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/RECORD +9 -9
- {homeassistant_stubs-2024.5.0b1.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.5.0b1.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/WHEEL +0 -0
@@ -21,7 +21,6 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, asyn
|
|
21
21
|
|
22
22
|
class AsekoUnitBinarySensorEntity(AsekoEntity, BinarySensorEntity):
|
23
23
|
entity_description: AsekoBinarySensorEntityDescription
|
24
|
-
_attr_name: Incomplete
|
25
24
|
_attr_unique_id: Incomplete
|
26
25
|
def __init__(self, unit: Unit, coordinator: AsekoDataUpdateCoordinator, entity_description: AsekoBinarySensorEntityDescription) -> None: ...
|
27
26
|
@property
|
@@ -3,6 +3,8 @@ from .addon import get_addon_manager as get_addon_manager
|
|
3
3
|
from .const import ADDON_SLUG as ADDON_SLUG, CONF_INTEGRATION_CREATED_ADDON as CONF_INTEGRATION_CREATED_ADDON, CONF_USE_ADDON as CONF_USE_ADDON, DOMAIN as DOMAIN, LOGGER as LOGGER
|
4
4
|
from _typeshed import Incomplete
|
5
5
|
from homeassistant.components.hassio import AddonError as AddonError, AddonInfo as AddonInfo, AddonManager as AddonManager, AddonState as AddonState, HassioServiceInfo as HassioServiceInfo, is_hassio as is_hassio
|
6
|
+
from homeassistant.components.onboarding import async_is_onboarded as async_is_onboarded
|
7
|
+
from homeassistant.components.zeroconf import ZeroconfServiceInfo as ZeroconfServiceInfo
|
6
8
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
|
7
9
|
from homeassistant.const import CONF_URL as CONF_URL
|
8
10
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
@@ -23,6 +25,7 @@ def build_ws_address(host: str, port: int) -> str: ...
|
|
23
25
|
|
24
26
|
class MatterConfigFlow(ConfigFlow, domain=DOMAIN):
|
25
27
|
VERSION: int
|
28
|
+
_running_in_background: bool
|
26
29
|
ws_address: Incomplete
|
27
30
|
integration_created_addon: bool
|
28
31
|
install_task: Incomplete
|
@@ -39,6 +42,7 @@ class MatterConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
39
42
|
async def _async_get_addon_info(self) -> AddonInfo: ...
|
40
43
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
41
44
|
async def async_step_manual(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
45
|
+
async def async_step_zeroconf(self, discovery_info: ZeroconfServiceInfo) -> ConfigFlowResult: ...
|
42
46
|
async def async_step_hassio(self, discovery_info: HassioServiceInfo) -> ConfigFlowResult: ...
|
43
47
|
async def async_step_hassio_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
44
48
|
async def async_step_on_supervisor(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
@@ -42,7 +42,7 @@ class ShellyCoordinatorBase(DataUpdateCoordinator[None], Generic[_DeviceT]):
|
|
42
42
|
@property
|
43
43
|
def sleep_period(self) -> int: ...
|
44
44
|
def async_setup(self, pending_platforms: list[Platform] | None = None) -> None: ...
|
45
|
-
async def
|
45
|
+
async def _async_device_connect_task(self) -> bool: ...
|
46
46
|
async def _async_reload_entry(self) -> None: ...
|
47
47
|
last_update_success: bool
|
48
48
|
async def async_shutdown_device_and_start_reauth(self) -> None: ...
|
homeassistant-stubs/core.pyi
CHANGED
@@ -186,6 +186,7 @@ class HomeAssistant:
|
|
186
186
|
def _async_add_hass_job(self, hassjob: HassJob[..., Coroutine[Any, Any, _R] | _R], *args: Any, eager_start: bool = False, background: bool = False) -> asyncio.Future[_R] | None: ...
|
187
187
|
def create_task(self, target: Coroutine[Any, Any, Any], name: str | None = None) -> None: ...
|
188
188
|
def async_create_task(self, target: Coroutine[Any, Any, _R], name: str | None = None, eager_start: bool = True) -> asyncio.Task[_R]: ...
|
189
|
+
def async_create_task_internal(self, target: Coroutine[Any, Any, _R], name: str | None = None, eager_start: bool = True) -> asyncio.Task[_R]: ...
|
189
190
|
def async_create_background_task(self, target: Coroutine[Any, Any, _R], name: str, eager_start: bool = True) -> asyncio.Task[_R]: ...
|
190
191
|
def async_add_executor_job(self, target: Callable[[Unpack[_Ts]], _T], *args: Unpack[_Ts]) -> asyncio.Future[_T]: ...
|
191
192
|
def async_add_import_executor_job(self, target: Callable[[Unpack[_Ts]], _T], *args: Unpack[_Ts]) -> asyncio.Future[_T]: ...
|
@@ -213,7 +213,7 @@ class Script:
|
|
213
213
|
def _find_referenced_entities(referenced: set[str], sequence: Sequence[dict[str, Any]]) -> None: ...
|
214
214
|
def run(self, variables: _VarsType | None = None, context: Context | None = None) -> None: ...
|
215
215
|
async def async_run(self, run_variables: _VarsType | None = None, context: Context | None = None, started_action: Callable[..., Any] | None = None) -> ScriptRunResult | None: ...
|
216
|
-
async def _async_stop(self, aws: list[asyncio.Task], update_state: bool
|
216
|
+
async def _async_stop(self, aws: list[asyncio.Task], update_state: bool) -> None: ...
|
217
217
|
async def async_stop(self, update_state: bool = True, spare: _ScriptRun | None = None) -> None: ...
|
218
218
|
async def _async_get_condition(self, config): ...
|
219
219
|
def _prep_repeat_script(self, step: int) -> Script: ...
|
{homeassistant_stubs-2024.5.0b1.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.5.
|
3
|
+
Version: 2024.5.0b2
|
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
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
17
17
|
Classifier: Topic :: Software Development
|
18
18
|
Classifier: Typing :: Typed
|
19
|
-
Requires-Dist: homeassistant (==2024.5.
|
19
|
+
Requires-Dist: homeassistant (==2024.5.0b2)
|
20
20
|
Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
|
21
21
|
Project-URL: Repository, https://github.com/KapJI/homeassistant-stubs
|
22
22
|
Project-URL: Release Notes, https://github.com/KapJI/homeassistant-stubs/releases
|
{homeassistant_stubs-2024.5.0b1.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/RECORD
RENAMED
@@ -302,7 +302,7 @@ homeassistant-stubs/components/aruba/device_tracker.pyi,sha256=2MIwyD9yQ_3CIYByU
|
|
302
302
|
homeassistant-stubs/components/arwn/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
303
303
|
homeassistant-stubs/components/arwn/sensor.pyi,sha256=exIq_DfFqJbE2UesCjx8U5K4Qq_7cbFU_kDQd2lVzi4,1711
|
304
304
|
homeassistant-stubs/components/aseko_pool_live/__init__.pyi,sha256=oJQQIm3qFt-nqY63_KJwIA9av66qHzFlnfZ0IylbTZM,919
|
305
|
-
homeassistant-stubs/components/aseko_pool_live/binary_sensor.pyi,sha256=
|
305
|
+
homeassistant-stubs/components/aseko_pool_live/binary_sensor.pyi,sha256=rYvjM76fo08WnNUfcGW9ZMC1smMYRJw41yQHVJvQraE,1705
|
306
306
|
homeassistant-stubs/components/aseko_pool_live/config_flow.pyi,sha256=vLjogM0MfvCJnEAGUayw_NGPIPcYPRaWs4f0jcAFgEc,1111
|
307
307
|
homeassistant-stubs/components/aseko_pool_live/const.pyi,sha256=khiPPfo2eMEa2_FD5EaWMNBjEj5lrRekpLiGQofynn8,12
|
308
308
|
homeassistant-stubs/components/aseko_pool_live/coordinator.pyi,sha256=wUF0htSNl9Gw9VaVtgi66upbOlB4DamSrG2vlSM2PQY,497
|
@@ -1646,7 +1646,7 @@ homeassistant-stubs/components/matter/addon.pyi,sha256=qPlEHnxkeD5UjWBhNxA40ZjSK
|
|
1646
1646
|
homeassistant-stubs/components/matter/api.pyi,sha256=AkeyJVfAWilCqut_s3za3iS6BSzWnfTn_0ZoX1FYdxg,2870
|
1647
1647
|
homeassistant-stubs/components/matter/binary_sensor.pyi,sha256=nGZO5njP4Ekm8HQO31nSBK2sOLq_N8-Gdgm9BsJUBcE,1670
|
1648
1648
|
homeassistant-stubs/components/matter/climate.pyi,sha256=VDUsi2HmJWPSVsz0qY8cFfdoYFtuNUcZXF8oRTM6X1s,2939
|
1649
|
-
homeassistant-stubs/components/matter/config_flow.pyi,sha256=
|
1649
|
+
homeassistant-stubs/components/matter/config_flow.pyi,sha256=flW6BhyrdmhbRf8VaAwQyK-CKOQjyZRp5UF3Bh9pD7Y,3296
|
1650
1650
|
homeassistant-stubs/components/matter/const.pyi,sha256=vIN9xwurYxkFSkv9q98RyCb2FheAVXr3YSGdwSsrO7I,180
|
1651
1651
|
homeassistant-stubs/components/matter/cover.pyi,sha256=ApVzhJGEDnadXiFExdq2jwyALQaYe5PePUl-DmRupJg,2075
|
1652
1652
|
homeassistant-stubs/components/matter/diagnostics.pyi,sha256=euUs7WTbEugSNJfeH2oyDTMghWTDmvMMIHox6u5IZ-o,855
|
@@ -2454,7 +2454,7 @@ homeassistant-stubs/components/shelly/button.pyi,sha256=5i_zvODLmuIyYmk3ruU33j58
|
|
2454
2454
|
homeassistant-stubs/components/shelly/climate.pyi,sha256=VI6EcKhz8IN4Kdu3g1LKDVb0ZKRoLiYfMoIZ7FFtCRo,5583
|
2455
2455
|
homeassistant-stubs/components/shelly/config_flow.pyi,sha256=0iyELhQDMzcIVPynAGMi8PMgFCyz-FaPOtajnmDqKhk,3232
|
2456
2456
|
homeassistant-stubs/components/shelly/const.pyi,sha256=fpUmXnvLpiJv5wgcztDGRc2wH1ko_p1MdOlmwdU0oQY,2301
|
2457
|
-
homeassistant-stubs/components/shelly/coordinator.pyi,sha256=
|
2457
|
+
homeassistant-stubs/components/shelly/coordinator.pyi,sha256=YYPypgNjZctz8rvpsgCAaGwGbUBvUrvz9fCf12qWVtw,7254
|
2458
2458
|
homeassistant-stubs/components/shelly/cover.pyi,sha256=gQo6pbVOGipMBJd5XH5ahG5z_zJ1OiuPVJn2uvaQN9Y,2802
|
2459
2459
|
homeassistant-stubs/components/shelly/device_trigger.pyi,sha256=pXIeDnIMtGs_ZkJV8fvJG8kYkaTrZ6RW7YnCjKWxZNE,1988
|
2460
2460
|
homeassistant-stubs/components/shelly/diagnostics.pyi,sha256=tylnHfNliUxiw2sC_ycJRxg6ShUEYZNlYTKZjWWQLmo,733
|
@@ -3184,7 +3184,7 @@ homeassistant-stubs/components/zwave_js/update.pyi,sha256=DZ89qey4VhEIz4DzjIi5tN
|
|
3184
3184
|
homeassistant-stubs/config.pyi,sha256=Lxa7qbBd2H-T7R5RHmnlNQT4xZ8uSMmI9mtsDNEqLUU,8894
|
3185
3185
|
homeassistant-stubs/config_entries.pyi,sha256=PS3dTrFk3nq75Z6taQ5eQfwMxYp0USHMNsFPqAGJTDA,19019
|
3186
3186
|
homeassistant-stubs/const.pyi,sha256=l99s93zsWlDvq2v8cRJFKqEBt7LX0QVHFNhjnmeFUPM,24581
|
3187
|
-
homeassistant-stubs/core.pyi,sha256=
|
3187
|
+
homeassistant-stubs/core.pyi,sha256=Yd221eUDnsd6vqfzMfF8awDv62rTt0O9x2xJtoqvBow,24858
|
3188
3188
|
homeassistant-stubs/data_entry_flow.pyi,sha256=tpi3kK2SZSiV1jbXEWChCc34T91d5Ew9IvBJSo_meOU,8238
|
3189
3189
|
homeassistant-stubs/exceptions.pyi,sha256=zP1npdngP9_UXGmR93YGKCtUfYXfc2ytP3chBUI9Lhs,3768
|
3190
3190
|
homeassistant-stubs/generated/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -3249,7 +3249,7 @@ homeassistant-stubs/helpers/registry.pyi,sha256=-v534seg3-3n2RzF2HP5fUUf9-lzGuOu
|
|
3249
3249
|
homeassistant-stubs/helpers/reload.pyi,sha256=HpsIK7zNBneJSVXIp7knvF_MtWx5bmsjzAa99nbxxfw,2237
|
3250
3250
|
homeassistant-stubs/helpers/restore_state.pyi,sha256=3bal-ZQ0mYDm8KmOVXp0kxgA6XKLRqUMw8bugq8XmLs,2933
|
3251
3251
|
homeassistant-stubs/helpers/schema_config_entry_flow.pyi,sha256=HGo98nEziISzacrN5uRGO_vWtRYPygvb0QjYF9Fwz98,4999
|
3252
|
-
homeassistant-stubs/helpers/script.pyi,sha256=
|
3252
|
+
homeassistant-stubs/helpers/script.pyi,sha256=9nu2vDUNozumwIsBxoqQC1xb0uVt5Qv_1zD-sCov3OI,13736
|
3253
3253
|
homeassistant-stubs/helpers/script_variables.pyi,sha256=oH8USW9PDMHyCACqINIUIm2ZQENbHSyRN37dhgXD_08,570
|
3254
3254
|
homeassistant-stubs/helpers/selector.pyi,sha256=19URGEJtfNHNOLOSvG_omcJY6Mo0pWEOm6U5o3j-SAE,15051
|
3255
3255
|
homeassistant-stubs/helpers/sensor.pyi,sha256=lElWOartDwgLVi4vvGlqHFEJ8u25O_PiiEUOSo-CQOg,263
|
@@ -3322,7 +3322,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3322
3322
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3323
3323
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=8rCANDOO3yTLdOqK3AZNmpv-dQD7JVKP1VKDhnEjK3Y,4239
|
3324
3324
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3325
|
-
homeassistant_stubs-2024.5.
|
3326
|
-
homeassistant_stubs-2024.5.
|
3327
|
-
homeassistant_stubs-2024.5.
|
3328
|
-
homeassistant_stubs-2024.5.
|
3325
|
+
homeassistant_stubs-2024.5.0b2.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3326
|
+
homeassistant_stubs-2024.5.0b2.dist-info/METADATA,sha256=9gVzZ1mAudL7XiHFfVEclV-OMXguAv5xy0qoMunpWOI,3015
|
3327
|
+
homeassistant_stubs-2024.5.0b2.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
3328
|
+
homeassistant_stubs-2024.5.0b2.dist-info/RECORD,,
|
{homeassistant_stubs-2024.5.0b1.dist-info → homeassistant_stubs-2024.5.0b2.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|