homeassistant-stubs 2025.7.0b2__py3-none-any.whl → 2025.7.0b4__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/mqtt/config_flow.pyi +2 -0
- homeassistant-stubs/components/rest/data.pyi +1 -0
- homeassistant-stubs/components/stream/__init__.pyi +1 -1
- homeassistant-stubs/components/stream/const.pyi +1 -0
- homeassistant-stubs/components/stream/core.pyi +2 -1
- homeassistant-stubs/components/zwave_js/config_flow.pyi +4 -1
- {homeassistant_stubs-2025.7.0b2.dist-info → homeassistant_stubs-2025.7.0b4.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.7.0b2.dist-info → homeassistant_stubs-2025.7.0b4.dist-info}/RECORD +10 -10
- {homeassistant_stubs-2025.7.0b2.dist-info → homeassistant_stubs-2025.7.0b4.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.7.0b2.dist-info → homeassistant_stubs-2025.7.0b4.dist-info}/licenses/LICENSE +0 -0
@@ -176,6 +176,8 @@ class MQTTSubentryFlowHandler(ConfigSubentryFlow):
|
|
176
176
|
def generate_names(self) -> tuple[str, str]: ...
|
177
177
|
@callback
|
178
178
|
def get_suggested_values_from_component(self, data_schema: vol.Schema) -> dict[str, Any]: ...
|
179
|
+
@callback
|
180
|
+
def get_suggested_values_from_device_data(self, data_schema: vol.Schema) -> dict[str, Any]: ...
|
179
181
|
async def async_step_user(self, user_input: dict[str, Any] | None = None) -> SubentryFlowResult: ...
|
180
182
|
async def async_step_reconfigure(self, user_input: dict[str, Any] | None = None) -> SubentryFlowResult: ...
|
181
183
|
async def async_step_device(self, user_input: dict[str, Any] | None = None) -> SubentryFlowResult: ...
|
@@ -32,5 +32,6 @@ class RestData:
|
|
32
32
|
@property
|
33
33
|
def url(self) -> str: ...
|
34
34
|
def set_url(self, url: str) -> None: ...
|
35
|
+
def _is_expected_content_type(self, content_type: str) -> bool: ...
|
35
36
|
def data_without_xml(self) -> str | None: ...
|
36
37
|
async def async_update(self, log_errors: bool = True) -> None: ...
|
@@ -33,7 +33,7 @@ class Stream:
|
|
33
33
|
def __init__(self, hass: HomeAssistant, source: str, pyav_options: dict[str, str], stream_settings: StreamSettings, dynamic_stream_settings: DynamicStreamSettings, stream_label: str | None = None) -> None: ...
|
34
34
|
def endpoint_url(self, fmt: str) -> str: ...
|
35
35
|
def outputs(self) -> Mapping[str, StreamOutput]: ...
|
36
|
-
def add_provider(self, fmt: str, timeout: int =
|
36
|
+
def add_provider(self, fmt: str, timeout: int | None = None) -> StreamOutput: ...
|
37
37
|
async def remove_provider(self, provider: StreamOutput) -> None: ...
|
38
38
|
def check_idle(self) -> None: ...
|
39
39
|
@property
|
@@ -75,10 +75,11 @@ class Segment:
|
|
75
75
|
class IdleTimer:
|
76
76
|
_hass: Incomplete
|
77
77
|
_timeout: Incomplete
|
78
|
+
_startup_timeout: Incomplete
|
78
79
|
_callback: Incomplete
|
79
80
|
_unsub: CALLBACK_TYPE | None
|
80
81
|
idle: bool
|
81
|
-
def __init__(self, hass: HomeAssistant, timeout: int, idle_callback: Callable[[], Coroutine[Any, Any, None]]) -> None: ...
|
82
|
+
def __init__(self, hass: HomeAssistant, timeout: int, idle_callback: Callable[[], Coroutine[Any, Any, None]], startup_timeout: int | None = None) -> None: ...
|
82
83
|
def start(self) -> None: ...
|
83
84
|
def awake(self) -> None: ...
|
84
85
|
def clear(self) -> 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.0b2.dist-info → homeassistant_stubs-2025.7.0b4.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.0b4
|
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.0b4
|
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.0b2.dist-info → homeassistant_stubs-2025.7.0b4.dist-info}/RECORD
RENAMED
@@ -2328,7 +2328,7 @@ homeassistant-stubs/components/mqtt/camera.pyi,sha256=eDj1zOTQDw5VYepTsyLsWMiJWh
|
|
2328
2328
|
homeassistant-stubs/components/mqtt/client.pyi,sha256=jweo8N8ZuFmkJZMJeTsCngZIzsholsMQ-LJVJWsEMFQ,10871
|
2329
2329
|
homeassistant-stubs/components/mqtt/climate.pyi,sha256=mloPT_B4fa1SDbzFYIi5iSbo3haNsb-0PuqAFCtGDGo,8922
|
2330
2330
|
homeassistant-stubs/components/mqtt/config.pyi,sha256=ZzcogEgaXfMFwZIYMPiIpTSMnuMKx6Xsvv30vbB8iXw,721
|
2331
|
-
homeassistant-stubs/components/mqtt/config_flow.pyi,sha256=
|
2331
|
+
homeassistant-stubs/components/mqtt/config_flow.pyi,sha256=fU60TmPYM8pdfJ6z16Nx5JdGNi4TURWxIOuUS1HcRx4,22803
|
2332
2332
|
homeassistant-stubs/components/mqtt/config_integration.pyi,sha256=WpU7MEABRRI1PUguDOcOJXSsNEacS63lAHfyzoYQdzg,801
|
2333
2333
|
homeassistant-stubs/components/mqtt/const.pyi,sha256=wsoe7Hk3S3oSRgGN_GB42JhNuWV4Ddh1n3sGZAhqpnk,7103
|
2334
2334
|
homeassistant-stubs/components/mqtt/cover.pyi,sha256=rR7ct4zPcTsGFE_-pagvdjeInmHNuQQ1x7eXy0AXkN8,6351
|
@@ -3039,7 +3039,7 @@ homeassistant-stubs/components/repairs/websocket_api.pyi,sha256=1x8_JFFM2V-_Gl4z
|
|
3039
3039
|
homeassistant-stubs/components/rest/__init__.pyi,sha256=8hkwxOqojQQ3ijzBoEuvOyNQUgyNRU-7f-ic_l6yxng,2717
|
3040
3040
|
homeassistant-stubs/components/rest/binary_sensor.pyi,sha256=5WlwW4SfEc6B8ybpqgOFwwuekPcpWAjztJ9dkA-c3bQ,2263
|
3041
3041
|
homeassistant-stubs/components/rest/const.pyi,sha256=P2fOs4YfZ_b9hjQMFSb9oV9SrVDnsdj62AKatqGNCl0,539
|
3042
|
-
homeassistant-stubs/components/rest/data.pyi,sha256=
|
3042
|
+
homeassistant-stubs/components/rest/data.pyi,sha256=Ixhp9MkeV_Pb-XdSC9k3k-1tKsZwttHs1c29EfPtpGQ,1675
|
3043
3043
|
homeassistant-stubs/components/rest/entity.pyi,sha256=X1o_wbq2YdsF8EJmVoDZ5PMJ-lNPAskHqM71F2G7eb4,1059
|
3044
3044
|
homeassistant-stubs/components/rest/notify.pyi,sha256=MnUiVzdWYGBJ96Yy57ASi1ACwED_ieXYHscIytV1ZSM,2265
|
3045
3045
|
homeassistant-stubs/components/rest/schema.pyi,sha256=8m-zP5zX9_fc4rsN2KBXtse_YGJFKpacyb-I72IJOyc,1702
|
@@ -3445,9 +3445,9 @@ homeassistant-stubs/components/stookwijzer/const.pyi,sha256=0d_qsIexzVa-IraayyR1
|
|
3445
3445
|
homeassistant-stubs/components/stookwijzer/coordinator.pyi,sha256=hZXbxzHxhgicqpjirQW2oyokzytSZjhHpH06HGLvZHA,908
|
3446
3446
|
homeassistant-stubs/components/stookwijzer/diagnostics.pyi,sha256=4CqdhqW9O65JIdvN0wJnuyG-aPWjusbuI8ZVw5Y4Ubg,280
|
3447
3447
|
homeassistant-stubs/components/stookwijzer/sensor.pyi,sha256=QhcepQUx7VUUJBjuGJQHAVV0n8nWi1hTSgjEhzZpBUg,1757
|
3448
|
-
homeassistant-stubs/components/stream/__init__.pyi,sha256=
|
3449
|
-
homeassistant-stubs/components/stream/const.pyi,sha256=
|
3450
|
-
homeassistant-stubs/components/stream/core.pyi,sha256=
|
3448
|
+
homeassistant-stubs/components/stream/__init__.pyi,sha256=L2Vg1Z-Betp5QrV4v8uY0Q1RjbKzi_O8k1Ux5ok53uE,3195
|
3449
|
+
homeassistant-stubs/components/stream/const.pyi,sha256=EKuilZdvuSeO6kKD1LMvsHU4XsgQV_UR09posLSvB9I,1079
|
3450
|
+
homeassistant-stubs/components/stream/core.pyi,sha256=xTTjDskcG72FzimVl8k92v7IHCHKI-CJX5c91HdDQh8,5452
|
3451
3451
|
homeassistant-stubs/components/stream/diagnostics.pyi,sha256=LPE-_-2Ia-uFQT3m6EPwYBMD-7VbBNHW1IaDw-i1UZQ,312
|
3452
3452
|
homeassistant-stubs/components/stream/exceptions.pyi,sha256=C5TQijzQOOLbIZIkP3oQ_mQ83_aCUXqjtPaxe1Yfi5E,526
|
3453
3453
|
homeassistant-stubs/components/stream/fmp4utils.pyi,sha256=Raz6m5L-wlfb_N-UQEuuM6E6fZrHp-QGIqr4uXQOqm4,811
|
@@ -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.0b4.dist-info/METADATA,sha256=3LrplMQkLVLGk92BvTfE9jz43B2se67uMoZ27veHT-w,2952
|
4298
|
+
homeassistant_stubs-2025.7.0b4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
4299
|
+
homeassistant_stubs-2025.7.0b4.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
4300
|
+
homeassistant_stubs-2025.7.0b4.dist-info/RECORD,,
|
File without changes
|
File without changes
|