homeassistant-stubs 2025.7.0b1__py3-none-any.whl → 2025.7.0b3__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/homeassistant_hardware/firmware_config_flow.pyi +2 -0
- homeassistant-stubs/components/lamarzocco/entity.pyi +3 -0
- homeassistant-stubs/components/lamarzocco/sensor.pyi +1 -0
- homeassistant-stubs/components/zwave_js/config_flow.pyi +4 -1
- {homeassistant_stubs-2025.7.0b1.dist-info → homeassistant_stubs-2025.7.0b3.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.7.0b1.dist-info → homeassistant_stubs-2025.7.0b3.dist-info}/RECORD +8 -8
- {homeassistant_stubs-2025.7.0b1.dist-info → homeassistant_stubs-2025.7.0b3.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.7.0b1.dist-info → homeassistant_stubs-2025.7.0b3.dist-info}/licenses/LICENSE +0 -0
@@ -35,12 +35,14 @@ class BaseFirmwareInstallFlow(ConfigEntryBaseFlow, ABC, metaclass=abc.ABCMeta):
|
|
35
35
|
async def async_step_pick_firmware_zigbee(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
36
36
|
async def async_step_install_zigbee_firmware(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
37
37
|
async def async_step_addon_operation_failed(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
38
|
+
async def async_step_pre_confirm_zigbee(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
38
39
|
async def async_step_confirm_zigbee(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
39
40
|
async def _ensure_thread_addon_setup(self) -> ConfigFlowResult | None: ...
|
40
41
|
async def async_step_pick_firmware_thread(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
41
42
|
async def async_step_install_thread_firmware(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
42
43
|
async def async_step_install_otbr_addon(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
43
44
|
async def async_step_start_otbr_addon(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
45
|
+
async def async_step_pre_confirm_otbr(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
44
46
|
async def async_step_confirm_otbr(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
45
47
|
@abstractmethod
|
46
48
|
def _async_flow_finished(self) -> ConfigFlowResult: ...
|
@@ -15,9 +15,12 @@ class LaMarzoccoEntityDescription(EntityDescription):
|
|
15
15
|
|
16
16
|
class LaMarzoccoBaseEntity(CoordinatorEntity[LaMarzoccoUpdateCoordinator]):
|
17
17
|
_attr_has_entity_name: bool
|
18
|
+
_unavailable_when_machine_off: bool
|
18
19
|
_attr_unique_id: Incomplete
|
19
20
|
_attr_device_info: Incomplete
|
20
21
|
def __init__(self, coordinator: LaMarzoccoUpdateCoordinator, key: str) -> None: ...
|
22
|
+
@property
|
23
|
+
def available(self) -> bool: ...
|
21
24
|
|
22
25
|
class LaMarzoccoEntity(LaMarzoccoBaseEntity):
|
23
26
|
entity_description: LaMarzoccoEntityDescription
|
@@ -28,5 +28,6 @@ class LaMarzoccoSensorEntity(LaMarzoccoEntity, SensorEntity):
|
|
28
28
|
def native_value(self) -> StateType | datetime | None: ...
|
29
29
|
|
30
30
|
class LaMarzoccoStatisticSensorEntity(LaMarzoccoSensorEntity):
|
31
|
+
_unavailable_when_machine_off: bool
|
31
32
|
@property
|
32
33
|
def native_value(self) -> StateType | datetime | None: ...
|
@@ -15,7 +15,6 @@ from homeassistant.helpers.hassio import is_hassio as is_hassio
|
|
15
15
|
from homeassistant.helpers.service_info.hassio import HassioServiceInfo as HassioServiceInfo
|
16
16
|
from homeassistant.helpers.service_info.usb import UsbServiceInfo as UsbServiceInfo
|
17
17
|
from homeassistant.helpers.service_info.zeroconf import ZeroconfServiceInfo as ZeroconfServiceInfo
|
18
|
-
from homeassistant.helpers.typing import VolDictType as VolDictType
|
19
18
|
from pathlib import Path
|
20
19
|
from typing import Any
|
21
20
|
from zwave_js_server.client import Client as Client
|
@@ -30,6 +29,8 @@ ADDON_SETUP_TIMEOUT_ROUNDS: int
|
|
30
29
|
ADDON_USER_INPUT_MAP: Incomplete
|
31
30
|
ON_SUPERVISOR_SCHEMA: Incomplete
|
32
31
|
MIN_MIGRATION_SDK_VERSION: Incomplete
|
32
|
+
NETWORK_TYPE_NEW: str
|
33
|
+
NETWORK_TYPE_EXISTING: str
|
33
34
|
|
34
35
|
def get_manual_schema(user_input: dict[str, Any]) -> vol.Schema: ...
|
35
36
|
def get_on_supervisor_schema(user_input: dict[str, Any]) -> vol.Schema: ...
|
@@ -88,6 +89,8 @@ class ZWaveJSConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
88
89
|
async def async_step_intent_custom(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
89
90
|
async def async_step_on_supervisor(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
90
91
|
async def async_step_configure_addon_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
92
|
+
async def async_step_network_type(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
93
|
+
async def async_step_configure_security_keys(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
91
94
|
async def async_step_finish_addon_setup_user(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
92
95
|
@callback
|
93
96
|
def _async_create_entry_from_vars(self) -> ConfigFlowResult: ...
|
{homeassistant_stubs-2025.7.0b1.dist-info → homeassistant_stubs-2025.7.0b3.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.7.
|
3
|
+
Version: 2025.7.0b3
|
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.7.
|
21
|
+
Requires-Dist: homeassistant==2025.7.0b3
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.7.0b1.dist-info → homeassistant_stubs-2025.7.0b3.dist-info}/RECORD
RENAMED
@@ -1522,7 +1522,7 @@ homeassistant-stubs/components/homeassistant_green/hardware.pyi,sha256=F0vW0HKbm
|
|
1522
1522
|
homeassistant-stubs/components/homeassistant_hardware/__init__.pyi,sha256=SUXW5kX_c-WP-ftkNUgxjQdoA9_Z9ehRkED__HaOlKo,405
|
1523
1523
|
homeassistant-stubs/components/homeassistant_hardware/const.pyi,sha256=NB1bv9Iqnmf3AJ3L8L4VdvfirMn3zpgHokBvMtNIJB0,516
|
1524
1524
|
homeassistant-stubs/components/homeassistant_hardware/coordinator.pyi,sha256=-7xvRKdIOB81Tm-3mfgnkUMh4fWixwCKqSngfZLRc_k,688
|
1525
|
-
homeassistant-stubs/components/homeassistant_hardware/firmware_config_flow.pyi,sha256=
|
1525
|
+
homeassistant-stubs/components/homeassistant_hardware/firmware_config_flow.pyi,sha256=bLDG9CpufxHqsYAVyPGRQ0ZJ7AUdAH66s9r82qH3lzM,4805
|
1526
1526
|
homeassistant-stubs/components/homeassistant_hardware/helpers.pyi,sha256=BzOXtbHQ8GVUIbx0T7MokToASD2eiL_ceona69A_ZH4,1969
|
1527
1527
|
homeassistant-stubs/components/homeassistant_hardware/silabs_multiprotocol_addon.pyi,sha256=P8z8qjk32EnV2d3Gyu5TmKM4dDAnT9lLasI4VKENhKY,7565
|
1528
1528
|
homeassistant-stubs/components/homeassistant_hardware/update.pyi,sha256=K3R9Y3oNLLGLp6xqwMbfTRswQPIoNHUbJI0KRYolwHg,3356
|
@@ -1921,10 +1921,10 @@ homeassistant-stubs/components/lamarzocco/config_flow.pyi,sha256=4WAnoIRnT137skg
|
|
1921
1921
|
homeassistant-stubs/components/lamarzocco/const.pyi,sha256=JcSuOBLJ3ncDIlIGkD7hJa2JZ9napMLJQI7ku_jVoN0,76
|
1922
1922
|
homeassistant-stubs/components/lamarzocco/coordinator.pyi,sha256=5hhguTAYBkhNyGWnsT64Aj0i4jVD6w_FVFbsLpRAV_U,2413
|
1923
1923
|
homeassistant-stubs/components/lamarzocco/diagnostics.pyi,sha256=lSbaEGL6AmPpko_DpvVizn457ne-mGyxTfRgxa-MCb0,560
|
1924
|
-
homeassistant-stubs/components/lamarzocco/entity.pyi,sha256=
|
1924
|
+
homeassistant-stubs/components/lamarzocco/entity.pyi,sha256=QjUT1oIGLemgmHy-A2aIPklHV4IGe7CbKapMB3bCkj4,1526
|
1925
1925
|
homeassistant-stubs/components/lamarzocco/number.pyi,sha256=UjX5bhGG-2nEg8VT3olMFYgJ6GssEL_66PhjfG_m0Ts,1794
|
1926
1926
|
homeassistant-stubs/components/lamarzocco/select.pyi,sha256=-ZkOPThSOgRouG60DJ5vbvXliByYsTVYvkvk6SzYsaM,1851
|
1927
|
-
homeassistant-stubs/components/lamarzocco/sensor.pyi,sha256=
|
1927
|
+
homeassistant-stubs/components/lamarzocco/sensor.pyi,sha256=i5gSwgVQoMGHjaKI-chWC_eWt8N6cm2_Vjvz-OFA2R4,1816
|
1928
1928
|
homeassistant-stubs/components/lamarzocco/switch.pyi,sha256=yvoEJ-t8zVPAvXUXhqyMXzQ_OTpitYffRMD-oV3QNx4,2499
|
1929
1929
|
homeassistant-stubs/components/lamarzocco/update.pyi,sha256=ht5ZBcAnx36uiA9bWOE4t4OD9UOwqiJ6eNGZbI7ZYMM,1842
|
1930
1930
|
homeassistant-stubs/components/lametric/__init__.pyi,sha256=g8aXL6WS0wOUltrUIFxH6a0ZzHLfmEzLHlxLp2OtpOk,839
|
@@ -4116,7 +4116,7 @@ homeassistant-stubs/components/zwave_js/api.pyi,sha256=mZEh9SklByeHUVfQ3GYYBmQF0
|
|
4116
4116
|
homeassistant-stubs/components/zwave_js/binary_sensor.pyi,sha256=AtE1N01S1iGaBb4xKXdIZwtDZq5wAkGgPQ_zhLFDimE,3615
|
4117
4117
|
homeassistant-stubs/components/zwave_js/button.pyi,sha256=2d5ilViWUTQGzjrIgD7IWz_biTKH7r2ZkKv_ngxwLCQ,2204
|
4118
4118
|
homeassistant-stubs/components/zwave_js/climate.pyi,sha256=4ZLhK_wk3guJPjzF22I23hicZyZPp7xmAEL5sYIk1lI,4472
|
4119
|
-
homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=
|
4119
|
+
homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=v8ooknJalmJn_7jGd0QPnCY6uAsUB-8Lxk9FE2HN_MU,9092
|
4120
4120
|
homeassistant-stubs/components/zwave_js/config_validation.pyi,sha256=i0l2VLc5E1-pW3oHZjxqeKJ1FJg7h4nwcDv02KtGHzU,148
|
4121
4121
|
homeassistant-stubs/components/zwave_js/const.pyi,sha256=LLY1hVjHEpn4KJYY837RY-V2oN2AdBPxYDM6F6BD1qM,3869
|
4122
4122
|
homeassistant-stubs/components/zwave_js/cover.pyi,sha256=wUuou3PgEVq45VUYOjCy1re39GWZIekzY92ueXmjlS0,5018
|
@@ -4294,7 +4294,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
4294
4294
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
4295
4295
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
4296
4296
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
4297
|
-
homeassistant_stubs-2025.7.
|
4298
|
-
homeassistant_stubs-2025.7.
|
4299
|
-
homeassistant_stubs-2025.7.
|
4300
|
-
homeassistant_stubs-2025.7.
|
4297
|
+
homeassistant_stubs-2025.7.0b3.dist-info/METADATA,sha256=iOENSFZUsFFQKPAWN26bs7QngsoWGRTR7qFYKN6XyuI,2952
|
4298
|
+
homeassistant_stubs-2025.7.0b3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4299
|
+
homeassistant_stubs-2025.7.0b3.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4300
|
+
homeassistant_stubs-2025.7.0b3.dist-info/RECORD,,
|
File without changes
|
File without changes
|