homeassistant-stubs 2025.7.3__py3-none-any.whl → 2025.7.4__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.
- homeassistant-stubs/components/fujitsu_fglair/climate.pyi +1 -1
- homeassistant-stubs/components/lifx/light.pyi +1 -1
- homeassistant-stubs/components/matter/light.pyi +1 -1
- homeassistant-stubs/components/telegram_bot/webhooks.pyi +3 -1
- homeassistant-stubs/components/zwave_js/config_flow.pyi +1 -0
- homeassistant-stubs/components/zwave_js/entity.pyi +0 -4
- {homeassistant_stubs-2025.7.3.dist-info → homeassistant_stubs-2025.7.4.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.7.3.dist-info → homeassistant_stubs-2025.7.4.dist-info}/RECORD +10 -10
- {homeassistant_stubs-2025.7.3.dist-info → homeassistant_stubs-2025.7.4.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.7.3.dist-info → homeassistant_stubs-2025.7.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -2,7 +2,7 @@ from .coordinator import FGLairConfigEntry as FGLairConfigEntry, FGLairCoordinat
|
|
|
2
2
|
from .entity import FGLairEntity as FGLairEntity
|
|
3
3
|
from _typeshed import Incomplete
|
|
4
4
|
from ayla_iot_unofficial.fujitsu_hvac import FujitsuHVAC as FujitsuHVAC
|
|
5
|
-
from homeassistant.components.climate import ClimateEntity as ClimateEntity, ClimateEntityFeature as ClimateEntityFeature, FAN_AUTO as FAN_AUTO, FAN_HIGH as FAN_HIGH, FAN_LOW as FAN_LOW, FAN_MEDIUM as FAN_MEDIUM, HVACMode as HVACMode, SWING_BOTH as SWING_BOTH, SWING_HORIZONTAL as SWING_HORIZONTAL, SWING_OFF as SWING_OFF, SWING_VERTICAL as SWING_VERTICAL
|
|
5
|
+
from homeassistant.components.climate import ClimateEntity as ClimateEntity, ClimateEntityFeature as ClimateEntityFeature, FAN_AUTO as FAN_AUTO, FAN_HIGH as FAN_HIGH, FAN_LOW as FAN_LOW, FAN_MEDIUM as FAN_MEDIUM, FAN_OFF as FAN_OFF, HVACMode as HVACMode, SWING_BOTH as SWING_BOTH, SWING_HORIZONTAL as SWING_HORIZONTAL, SWING_OFF as SWING_OFF, SWING_VERTICAL as SWING_VERTICAL
|
|
6
6
|
from homeassistant.const import ATTR_TEMPERATURE as ATTR_TEMPERATURE, PRECISION_HALVES as PRECISION_HALVES, UnitOfTemperature as UnitOfTemperature
|
|
7
7
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
|
8
8
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
|
|
@@ -5,7 +5,7 @@ from .entity import LIFXEntity as LIFXEntity
|
|
|
5
5
|
from .manager import LIFXManager as LIFXManager, SERVICE_EFFECT_COLORLOOP as SERVICE_EFFECT_COLORLOOP, SERVICE_EFFECT_FLAME as SERVICE_EFFECT_FLAME, SERVICE_EFFECT_MORPH as SERVICE_EFFECT_MORPH, SERVICE_EFFECT_MOVE as SERVICE_EFFECT_MOVE, SERVICE_EFFECT_PULSE as SERVICE_EFFECT_PULSE, SERVICE_EFFECT_SKY as SERVICE_EFFECT_SKY, SERVICE_EFFECT_STOP as SERVICE_EFFECT_STOP
|
|
6
6
|
from .util import convert_16_to_8 as convert_16_to_8, convert_8_to_16 as convert_8_to_16, find_hsbk as find_hsbk, lifx_features as lifx_features, merge_hsbk as merge_hsbk
|
|
7
7
|
from _typeshed import Incomplete
|
|
8
|
-
from homeassistant.components.light import ATTR_EFFECT as ATTR_EFFECT, ATTR_TRANSITION as ATTR_TRANSITION, ColorMode as ColorMode, LIGHT_TURN_ON_SCHEMA as LIGHT_TURN_ON_SCHEMA, LightEntity as LightEntity, LightEntityFeature as LightEntityFeature
|
|
8
|
+
from homeassistant.components.light import ATTR_BRIGHTNESS as ATTR_BRIGHTNESS, ATTR_BRIGHTNESS_STEP as ATTR_BRIGHTNESS_STEP, ATTR_BRIGHTNESS_STEP_PCT as ATTR_BRIGHTNESS_STEP_PCT, ATTR_EFFECT as ATTR_EFFECT, ATTR_TRANSITION as ATTR_TRANSITION, ColorMode as ColorMode, LIGHT_TURN_ON_SCHEMA as LIGHT_TURN_ON_SCHEMA, LightEntity as LightEntity, LightEntityFeature as LightEntityFeature
|
|
9
9
|
from homeassistant.const import ATTR_ENTITY_ID as ATTR_ENTITY_ID, Platform as Platform
|
|
10
10
|
from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, HomeAssistant as HomeAssistant
|
|
11
11
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
|
@@ -32,7 +32,7 @@ class MatterLight(MatterEntity, LightEntity):
|
|
|
32
32
|
def _get_xy_color(self) -> tuple[float, float]: ...
|
|
33
33
|
def _get_hs_color(self) -> tuple[float, float]: ...
|
|
34
34
|
def _get_color_temperature(self) -> int: ...
|
|
35
|
-
def _get_brightness(self) -> int: ...
|
|
35
|
+
def _get_brightness(self) -> int | None: ...
|
|
36
36
|
def _get_color_mode(self) -> ColorMode: ...
|
|
37
37
|
async def async_turn_on(self, **kwargs: Any) -> None: ...
|
|
38
38
|
async def async_turn_off(self, **kwargs: Any) -> None: ...
|
|
@@ -36,12 +36,14 @@ class PushBot(BaseTelegramBot):
|
|
|
36
36
|
|
|
37
37
|
class PushBotView(HomeAssistantView):
|
|
38
38
|
requires_auth: bool
|
|
39
|
-
url = TELEGRAM_WEBHOOK_URL
|
|
40
39
|
name: str
|
|
41
40
|
hass: Incomplete
|
|
42
41
|
bot: Incomplete
|
|
43
42
|
application: Incomplete
|
|
44
43
|
trusted_networks: Incomplete
|
|
45
44
|
secret_token: Incomplete
|
|
45
|
+
url: Incomplete
|
|
46
46
|
def __init__(self, hass: HomeAssistant, bot: Bot, application: Application, trusted_networks: list[IPv4Network], secret_token: str) -> None: ...
|
|
47
47
|
async def post(self, request: HomeAssistantRequest) -> Response | None: ...
|
|
48
|
+
|
|
49
|
+
def _get_webhook_url(bot: Bot) -> str: ...
|
|
@@ -82,6 +82,7 @@ class ZWaveJSConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
|
82
82
|
async def async_step_zeroconf(self, discovery_info: ZeroconfServiceInfo) -> ConfigFlowResult: ...
|
|
83
83
|
async def async_step_zeroconf_confirm(self, user_input: dict | None = None) -> ConfigFlowResult: ...
|
|
84
84
|
async def async_step_usb(self, discovery_info: UsbServiceInfo) -> ConfigFlowResult: ...
|
|
85
|
+
async def async_step_confirm_usb_migration(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
85
86
|
async def async_step_manual(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
86
87
|
async def async_step_hassio(self, discovery_info: HassioServiceInfo) -> ConfigFlowResult: ...
|
|
87
88
|
async def async_step_hassio_confirm(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
|
@@ -15,8 +15,6 @@ from zwave_js_server.model.driver import Driver as Driver
|
|
|
15
15
|
from zwave_js_server.model.value import SetValueResult as SetValueResult, Value as ZwaveValue
|
|
16
16
|
|
|
17
17
|
EVENT_VALUE_REMOVED: str
|
|
18
|
-
EVENT_DEAD: str
|
|
19
|
-
EVENT_ALIVE: str
|
|
20
18
|
|
|
21
19
|
class ZWaveBaseEntity(Entity):
|
|
22
20
|
_attr_should_poll: bool
|
|
@@ -41,8 +39,6 @@ class ZWaveBaseEntity(Entity):
|
|
|
41
39
|
@property
|
|
42
40
|
def available(self) -> bool: ...
|
|
43
41
|
@callback
|
|
44
|
-
def _node_status_alive_or_dead(self, event_data: dict) -> None: ...
|
|
45
|
-
@callback
|
|
46
42
|
def _value_changed(self, event_data: dict) -> None: ...
|
|
47
43
|
@callback
|
|
48
44
|
def _value_removed(self, event_data: dict) -> None: ...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: homeassistant-stubs
|
|
3
|
-
Version: 2025.7.
|
|
3
|
+
Version: 2025.7.4
|
|
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.4
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
|
@@ -1265,7 +1265,7 @@ homeassistant-stubs/components/fronius/sensor.pyi,sha256=YIRztZMi9Yg6K9Xl2zr6mFk
|
|
|
1265
1265
|
homeassistant-stubs/components/frontend/__init__.pyi,sha256=-62b6xo9g18YXBQEkXOKJ3a0fo7mmJYP2TA1ep-you4,6750
|
|
1266
1266
|
homeassistant-stubs/components/frontend/storage.pyi,sha256=_V4mNehUf-RY0rRgMmg6KJ49YaJ_LPrQxBn7hz0O-Ko,2041
|
|
1267
1267
|
homeassistant-stubs/components/fujitsu_fglair/__init__.pyi,sha256=1p9wxrNiLqIF0sBoy5LXHdDfUydzLD2N7L-7IgqZrbA,805
|
|
1268
|
-
homeassistant-stubs/components/fujitsu_fglair/climate.pyi,sha256=
|
|
1268
|
+
homeassistant-stubs/components/fujitsu_fglair/climate.pyi,sha256=TaPuoOW7ggmdg_bSaYL9OCFq9ibE00FNIAwWPV_YuSA,2413
|
|
1269
1269
|
homeassistant-stubs/components/fujitsu_fglair/config_flow.pyi,sha256=e3VkcqUcWJgSkq9nUp4tfo8kcxhzmKSlqdhdhPcDWek,1205
|
|
1270
1270
|
homeassistant-stubs/components/fujitsu_fglair/const.pyi,sha256=XV-Yp-bzmDqxiG4NduFqCWYh4RawId4Jd3vvXcAYqgE,156
|
|
1271
1271
|
homeassistant-stubs/components/fujitsu_fglair/coordinator.pyi,sha256=Qm7Rfyy2Pc853kdjuy81iWZpFfdip8jYfdhMk8ODHIw,927
|
|
@@ -2014,7 +2014,7 @@ homeassistant-stubs/components/lifx/coordinator.pyi,sha256=hqVSoR4UATgAvZIfKRYf1
|
|
|
2014
2014
|
homeassistant-stubs/components/lifx/diagnostics.pyi,sha256=ugu3sqvYYW5294C_kH9DMiw4BPgXiPpfTbcrd0Sj_J4,560
|
|
2015
2015
|
homeassistant-stubs/components/lifx/discovery.pyi,sha256=2f4ap1B5OZ2p8CMbCfnnL4UVn0Wo49gY9ZKHFYrHQ0k,789
|
|
2016
2016
|
homeassistant-stubs/components/lifx/entity.pyi,sha256=su5Oec7Ud_DHVhmq7y93rt9KVSHTQNVOjkUrKOXl_aI,528
|
|
2017
|
-
homeassistant-stubs/components/lifx/light.pyi,sha256=
|
|
2017
|
+
homeassistant-stubs/components/lifx/light.pyi,sha256=3eNYkmSFSEYJFvV9SKL-rI_teMAf43TzfMvNoEykgKk,5013
|
|
2018
2018
|
homeassistant-stubs/components/lifx/manager.pyi,sha256=VwIc2T7VKrosVSzC9f5ABAmo1LUs9m781JtpwsBCMPI,4497
|
|
2019
2019
|
homeassistant-stubs/components/lifx/migration.pyi,sha256=8BxbI2xfEv3vJKwtW2Jeki9vCdhyoE1Sq1RgDuX_QQo,587
|
|
2020
2020
|
homeassistant-stubs/components/lifx/select.pyi,sha256=LoSUCMTor-sOe3Z__LjsLcZkxEf2NqWvfhfI-T_Wnsc,1949
|
|
@@ -2167,7 +2167,7 @@ homeassistant-stubs/components/matter/entity.pyi,sha256=23eMffcI5cWFKct5LfgoZebt
|
|
|
2167
2167
|
homeassistant-stubs/components/matter/event.pyi,sha256=xIgPw96sWDQ__xNfHCrc3TaCa9t-EZ4siaaBECsP8kU,1364
|
|
2168
2168
|
homeassistant-stubs/components/matter/fan.pyi,sha256=P0wL64anaEEChhqDCzIFgx_GAkDTVa6nizr9grvNdg0,2285
|
|
2169
2169
|
homeassistant-stubs/components/matter/helpers.pyi,sha256=f-ZzV_R_PwYpQi2zTRCfzpIdnZntb1qPHgOVtxFOIuM,1180
|
|
2170
|
-
homeassistant-stubs/components/matter/light.pyi,sha256=
|
|
2170
|
+
homeassistant-stubs/components/matter/light.pyi,sha256=k91ctBcrPRpYFgZOlH03Qp6gMZVd4yv4izH-jRAgKT8,3043
|
|
2171
2171
|
homeassistant-stubs/components/matter/lock.pyi,sha256=ZPn1akGHg_SxKrXa6DG5EjT2KOMarwpOj61xYM_gHl0,1754
|
|
2172
2172
|
homeassistant-stubs/components/matter/models.pyi,sha256=F7JjVYEtZnMMIjF-3CFmdvG1NEsDSEIC4d63P0pWwYQ,2076
|
|
2173
2173
|
homeassistant-stubs/components/matter/number.pyi,sha256=KtZTA9jZkO2ZUzJKXNAqPwvC7gxZ8D5Nk1l4k-BG3ew,1480
|
|
@@ -3634,7 +3634,7 @@ homeassistant-stubs/components/telegram_bot/broadcast.pyi,sha256=m3KRRY2Vx9kbdVk
|
|
|
3634
3634
|
homeassistant-stubs/components/telegram_bot/config_flow.pyi,sha256=dQklHBbBEONv4fWiL-MFJUHsx_NBY5zf8YV9apjl44c,4449
|
|
3635
3635
|
homeassistant-stubs/components/telegram_bot/const.pyi,sha256=eUVcDpVO84UQ6UDj372Yc6gwF-vsY39IjhFzVK7-Ldw,2120
|
|
3636
3636
|
homeassistant-stubs/components/telegram_bot/polling.pyi,sha256=Fvehve6Bgjjg07jqNotwqDw3VIjMbCtIXRf10Qz-rak,910
|
|
3637
|
-
homeassistant-stubs/components/telegram_bot/webhooks.pyi,sha256=
|
|
3637
|
+
homeassistant-stubs/components/telegram_bot/webhooks.pyi,sha256=pgaIS6_pg9qJkgDmIoOd0dcz3oPLvAoRR3nxMJDdzJo,2175
|
|
3638
3638
|
homeassistant-stubs/components/text/__init__.pyi,sha256=6Uf2fxstHDTplk8lkcDxLwrk0H1mlf1BCy_ZTds2x60,2271
|
|
3639
3639
|
homeassistant-stubs/components/text/const.pyi,sha256=jgUyRC9MeoNPeKV2lYbcmnBp64F9BDV6t2O_j93SkTg,112
|
|
3640
3640
|
homeassistant-stubs/components/text/device_action.pyi,sha256=vmqWvjvUm7V-IwFs5a2fGpreW6pNSTuSXNQKitUr8vQ,1148
|
|
@@ -4117,7 +4117,7 @@ homeassistant-stubs/components/zwave_js/api.pyi,sha256=mZEh9SklByeHUVfQ3GYYBmQF0
|
|
|
4117
4117
|
homeassistant-stubs/components/zwave_js/binary_sensor.pyi,sha256=AtE1N01S1iGaBb4xKXdIZwtDZq5wAkGgPQ_zhLFDimE,3615
|
|
4118
4118
|
homeassistant-stubs/components/zwave_js/button.pyi,sha256=2d5ilViWUTQGzjrIgD7IWz_biTKH7r2ZkKv_ngxwLCQ,2204
|
|
4119
4119
|
homeassistant-stubs/components/zwave_js/climate.pyi,sha256=4ZLhK_wk3guJPjzF22I23hicZyZPp7xmAEL5sYIk1lI,4472
|
|
4120
|
-
homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=
|
|
4120
|
+
homeassistant-stubs/components/zwave_js/config_flow.pyi,sha256=N5kDFezNxcNMJW6TK1IytkyhYuSxvMna9IlUBoT7bDQ,9212
|
|
4121
4121
|
homeassistant-stubs/components/zwave_js/config_validation.pyi,sha256=i0l2VLc5E1-pW3oHZjxqeKJ1FJg7h4nwcDv02KtGHzU,148
|
|
4122
4122
|
homeassistant-stubs/components/zwave_js/const.pyi,sha256=LLY1hVjHEpn4KJYY837RY-V2oN2AdBPxYDM6F6BD1qM,3869
|
|
4123
4123
|
homeassistant-stubs/components/zwave_js/cover.pyi,sha256=wUuou3PgEVq45VUYOjCy1re39GWZIekzY92ueXmjlS0,5018
|
|
@@ -4128,7 +4128,7 @@ homeassistant-stubs/components/zwave_js/device_trigger.pyi,sha256=YXcsPMMuZwV_L4
|
|
|
4128
4128
|
homeassistant-stubs/components/zwave_js/diagnostics.pyi,sha256=Ym1XWq_vGPLwI38wOGee8zDKQ7pznYNofK0h4teF1aA,1725
|
|
4129
4129
|
homeassistant-stubs/components/zwave_js/discovery.pyi,sha256=DcMx_DXGqZ9f8vz-IsHfW_BD4jCAKJPKzdTLiVDvarM,4441
|
|
4130
4130
|
homeassistant-stubs/components/zwave_js/discovery_data_template.pyi,sha256=KOV6rk2I85WMVDzh9hTiFVuJHAe2tEvfl_Fvh7TcYpo,7072
|
|
4131
|
-
homeassistant-stubs/components/zwave_js/entity.pyi,sha256=
|
|
4131
|
+
homeassistant-stubs/components/zwave_js/entity.pyi,sha256=MVcdxw-hEzcM38WFfrdp3-0tv_HMY6Q-3drk38H0aqg,2699
|
|
4132
4132
|
homeassistant-stubs/components/zwave_js/event.pyi,sha256=xHbJS_NV-4RaiSkB1fqhUE8GqHpEdkFCQSfuVmo-to4,1440
|
|
4133
4133
|
homeassistant-stubs/components/zwave_js/fan.pyi,sha256=Ti3XWVPh484sFzKu_lSZBBwSNH_G1QM0v8PdTJai__4,4065
|
|
4134
4134
|
homeassistant-stubs/components/zwave_js/helpers.pyi,sha256=PYGcZbMOYk9ODQhraSssIAm94i0haX0bjrt2PX363g4,5054
|
|
@@ -4295,7 +4295,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
|
4295
4295
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
|
4296
4296
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
|
4297
4297
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
|
4298
|
-
homeassistant_stubs-2025.7.
|
|
4299
|
-
homeassistant_stubs-2025.7.
|
|
4300
|
-
homeassistant_stubs-2025.7.
|
|
4301
|
-
homeassistant_stubs-2025.7.
|
|
4298
|
+
homeassistant_stubs-2025.7.4.dist-info/METADATA,sha256=c8fT3t0nC65a91Ty-Cm_LDch0J9qQRYyHiLRGRdyzC0,2948
|
|
4299
|
+
homeassistant_stubs-2025.7.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4300
|
+
homeassistant_stubs-2025.7.4.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4301
|
+
homeassistant_stubs-2025.7.4.dist-info/RECORD,,
|
|
File without changes
|
{homeassistant_stubs-2025.7.3.dist-info → homeassistant_stubs-2025.7.4.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|