homeassistant-stubs 2024.6.0b8__py3-none-any.whl → 2024.6.1__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/bootstrap.pyi +1 -1
- homeassistant-stubs/components/climate/intent.pyi +2 -3
- homeassistant-stubs/components/hydrawise/binary_sensor.pyi +4 -1
- homeassistant-stubs/components/hydrawise/entity.pyi +2 -0
- homeassistant-stubs/components/notify/repairs.pyi +1 -1
- homeassistant-stubs/components/overkiz/alarm_control_panel.pyi +1 -0
- homeassistant-stubs/components/weather/intent.pyi +1 -2
- homeassistant-stubs/helpers/intent.pyi +1 -1
- {homeassistant_stubs-2024.6.0b8.dist-info → homeassistant_stubs-2024.6.1.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.6.0b8.dist-info → homeassistant_stubs-2024.6.1.dist-info}/RECORD +12 -12
- {homeassistant_stubs-2024.6.0b8.dist-info → homeassistant_stubs-2024.6.1.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.6.0b8.dist-info → homeassistant_stubs-2024.6.1.dist-info}/WHEEL +0 -0
@@ -31,7 +31,7 @@ WRAP_UP_TIMEOUT: int
|
|
31
31
|
COOLDOWN_TIME: int
|
32
32
|
DEBUGGER_INTEGRATIONS: Incomplete
|
33
33
|
CORE_INTEGRATIONS: Incomplete
|
34
|
-
|
34
|
+
LOGGING_AND_HTTP_DEPS_INTEGRATIONS: Incomplete
|
35
35
|
FRONTEND_INTEGRATIONS: Incomplete
|
36
36
|
RECORDER_INTEGRATIONS: Incomplete
|
37
37
|
DISCOVERY_INTEGRATIONS: Incomplete
|
@@ -1,8 +1,7 @@
|
|
1
|
-
from . import
|
1
|
+
from . import DOMAIN as DOMAIN
|
2
2
|
from _typeshed import Incomplete
|
3
|
-
from homeassistant.core import HomeAssistant as HomeAssistant
|
3
|
+
from homeassistant.core import HomeAssistant as HomeAssistant
|
4
4
|
from homeassistant.helpers import intent as intent
|
5
|
-
from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
|
6
5
|
|
7
6
|
INTENT_GET_TEMPERATURE: str
|
8
7
|
|
@@ -12,7 +12,8 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEnti
|
|
12
12
|
@dataclass(frozen=True, kw_only=True)
|
13
13
|
class HydrawiseBinarySensorEntityDescription(BinarySensorEntityDescription):
|
14
14
|
value_fn: Callable[[HydrawiseBinarySensor], bool | None]
|
15
|
-
|
15
|
+
always_available: bool = ...
|
16
|
+
def __init__(self, *, key, device_class, entity_category, entity_registry_enabled_default, entity_registry_visible_default, force_update, icon, has_entity_name, name, translation_key, translation_placeholders, unit_of_measurement, value_fn, always_available) -> None: ...
|
16
17
|
|
17
18
|
CONTROLLER_BINARY_SENSORS: tuple[HydrawiseBinarySensorEntityDescription, ...]
|
18
19
|
RAIN_SENSOR_BINARY_SENSOR: tuple[HydrawiseBinarySensorEntityDescription, ...]
|
@@ -24,3 +25,5 @@ class HydrawiseBinarySensor(HydrawiseEntity, BinarySensorEntity):
|
|
24
25
|
entity_description: HydrawiseBinarySensorEntityDescription
|
25
26
|
_attr_is_on: Incomplete
|
26
27
|
def _update_attrs(self) -> None: ...
|
28
|
+
@property
|
29
|
+
def available(self) -> bool: ...
|
@@ -3,5 +3,5 @@ from homeassistant.components.repairs import RepairsFlow as RepairsFlow
|
|
3
3
|
from homeassistant.components.repairs.issue_handler import ConfirmRepairFlow as ConfirmRepairFlow
|
4
4
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
5
5
|
|
6
|
-
def migrate_notify_issue(hass: HomeAssistant, domain: str, integration_title: str, breaks_in_ha_version: str) -> None: ...
|
6
|
+
def migrate_notify_issue(hass: HomeAssistant, domain: str, integration_title: str, breaks_in_ha_version: str, service_name: str | None = None) -> None: ...
|
7
7
|
async def async_create_fix_flow(hass: HomeAssistant, issue_id: str, data: dict[str, str | int | float | None] | None) -> RepairsFlow: ...
|
@@ -53,6 +53,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry, async_add_e
|
|
53
53
|
|
54
54
|
class OverkizAlarmControlPanel(OverkizDescriptiveEntity, AlarmControlPanelEntity):
|
55
55
|
entity_description: OverkizAlarmDescription
|
56
|
+
_attr_code_arm_required: bool
|
56
57
|
_attr_supported_features: Incomplete
|
57
58
|
def __init__(self, device_url: str, coordinator: OverkizDataUpdateCoordinator, description: EntityDescription) -> None: ...
|
58
59
|
@property
|
@@ -1,8 +1,7 @@
|
|
1
|
-
from . import DOMAIN as DOMAIN
|
1
|
+
from . import DOMAIN as DOMAIN
|
2
2
|
from _typeshed import Incomplete
|
3
3
|
from homeassistant.core import HomeAssistant as HomeAssistant, State as State
|
4
4
|
from homeassistant.helpers import intent as intent
|
5
|
-
from homeassistant.helpers.entity_component import EntityComponent as EntityComponent
|
6
5
|
|
7
6
|
INTENT_GET_WEATHER: str
|
8
7
|
|
@@ -124,7 +124,7 @@ def _filter_by_features(features: int, candidates: Iterable[MatchTargetsCandidat
|
|
124
124
|
def _filter_by_device_classes(device_classes: Iterable[str], candidates: Iterable[MatchTargetsCandidate]) -> Iterable[MatchTargetsCandidate]: ...
|
125
125
|
def _add_areas(areas: area_registry.AreaRegistry, devices: device_registry.DeviceRegistry, candidates: Iterable[MatchTargetsCandidate]) -> None: ...
|
126
126
|
def async_match_targets(hass: HomeAssistant, constraints: MatchTargetsConstraints, preferences: MatchTargetsPreferences | None = None, states: list[State] | None = None) -> MatchTargetsResult: ...
|
127
|
-
def async_match_states(hass: HomeAssistant, name: str | None = None, area_name: str | None = None, floor_name: str | None = None, domains: Collection[str] | None = None, device_classes: Collection[str] | None = None, states: list[State] | None = None) -> Iterable[State]: ...
|
127
|
+
def async_match_states(hass: HomeAssistant, name: str | None = None, area_name: str | None = None, floor_name: str | None = None, domains: Collection[str] | None = None, device_classes: Collection[str] | None = None, states: list[State] | None = None, assistant: str | None = None) -> Iterable[State]: ...
|
128
128
|
def async_test_feature(state: State, feature: int, feature_name: str) -> None: ...
|
129
129
|
|
130
130
|
class IntentHandler:
|
{homeassistant_stubs-2024.6.0b8.dist-info → homeassistant_stubs-2024.6.1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.6.
|
3
|
+
Version: 2024.6.1
|
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.6.
|
19
|
+
Requires-Dist: homeassistant (==2024.6.1)
|
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
|
@@ -28,7 +28,7 @@ homeassistant-stubs/backports/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
28
28
|
homeassistant-stubs/backports/enum.pyi,sha256=xkDSG4CMuB2Nt6p41ZMn6ZoOadNZyKka7T6ypp01zn4,401
|
29
29
|
homeassistant-stubs/backports/functools.pyi,sha256=CO-_1EQxS7z-7Klaxc_O6RqCgj00vSRrFlRQKuu2v9A,409
|
30
30
|
homeassistant-stubs/block_async_io.pyi,sha256=YHCOUFY2BB3T30Mvmahis27cDDEsjsT5G7_QAKZFlD0,469
|
31
|
-
homeassistant-stubs/bootstrap.pyi,sha256=
|
31
|
+
homeassistant-stubs/bootstrap.pyi,sha256=WbKKNUKj1BQ5XkL4sVbfen9XNECM7fRwgzgKcMt34bo,4525
|
32
32
|
homeassistant-stubs/components/__init__.pyi,sha256=q2bLPZGVleGG6Ui44GnodCQXtIqeQaHR5KABVOnNwb4,363
|
33
33
|
homeassistant-stubs/components/abode/__init__.pyi,sha256=271Mbhu9kOoYq8wa6BnUdlzCkpqxbm9EDf-Xx6uWWFM,2064
|
34
34
|
homeassistant-stubs/components/abode/alarm_control_panel.pyi,sha256=3oVtDqHkuuWgMgg1hXRd6WXGWRW8vLRjj1d_LTow90c,1413
|
@@ -530,7 +530,7 @@ homeassistant-stubs/components/climate/device_action.pyi,sha256=xx3hQUQOzNPFHUSX
|
|
530
530
|
homeassistant-stubs/components/climate/device_condition.pyi,sha256=fwkkwzQLqzo-4_tZoUXKub9sCKMOzd79AcWoZe2W5Uw,1472
|
531
531
|
homeassistant-stubs/components/climate/device_trigger.pyi,sha256=mAGFpGWtfsRwBwK4WxkUAT94Lj67lvAPjAL8eqGy0vA,1251
|
532
532
|
homeassistant-stubs/components/climate/group.pyi,sha256=A5d1rpfWmnbP733q--kZPmNwloeqUH_224m4akNYgqc,419
|
533
|
-
homeassistant-stubs/components/climate/intent.pyi,sha256=
|
533
|
+
homeassistant-stubs/components/climate/intent.pyi,sha256=LUQyZQWYgAnbPcrUECUVae9pCU_DGmibsbhMVJYI54s,528
|
534
534
|
homeassistant-stubs/components/climate/reproduce_state.pyi,sha256=9iZjyeGJaP22yGLMOyM5Qf7nmd-P4hPo4e71yhGE5kg,1270
|
535
535
|
homeassistant-stubs/components/climate/significant_change.pyi,sha256=xWDZyza3NpgLbXJGuvDpoisZCmyPtPNo3rVMVGSGJsk,965
|
536
536
|
homeassistant-stubs/components/cloud/__init__.pyi,sha256=bh9Pou3DEvoh6SI1dFeW2_qGuiiCMCfs-tkDEAv5PrE,4306
|
@@ -1324,11 +1324,11 @@ homeassistant-stubs/components/husqvarna_automower/select.pyi,sha256=NJjPyK4rwqA
|
|
1324
1324
|
homeassistant-stubs/components/husqvarna_automower/sensor.pyi,sha256=yNAg-AeqbV7vSH9q0I6-NWbmvN73L1vpS_WeODJpZiE,2276
|
1325
1325
|
homeassistant-stubs/components/husqvarna_automower/switch.pyi,sha256=u5ZVg8ezdZvHZy5O4EJFkQmh5jKAxK8MDiFgWUtF3Hg,2338
|
1326
1326
|
homeassistant-stubs/components/hydrawise/__init__.pyi,sha256=t2yqEt3ccdEF7_WOKibmnLc4PESDvHVRHRDluCI91Wk,689
|
1327
|
-
homeassistant-stubs/components/hydrawise/binary_sensor.pyi,sha256=
|
1327
|
+
homeassistant-stubs/components/hydrawise/binary_sensor.pyi,sha256=Jmtfge0nOgMUONeJ2TxdN0UUR-ykO97CoEq1TbgCtA0,1824
|
1328
1328
|
homeassistant-stubs/components/hydrawise/config_flow.pyi,sha256=z9d8T9MlR9fHvsSXeono_2SpO1yVflvJTXRwqR_m50s,959
|
1329
1329
|
homeassistant-stubs/components/hydrawise/const.pyi,sha256=GByx0fyEBDoxGb0gPgO2-KgXfEUaRdAz8o-4iHdVhi0,230
|
1330
1330
|
homeassistant-stubs/components/hydrawise/coordinator.pyi,sha256=_zJ1QdjfN6p4qn5_ks7vk7RtpuI1KikC7Z7b4mypjWo,1045
|
1331
|
-
homeassistant-stubs/components/hydrawise/entity.pyi,sha256=
|
1331
|
+
homeassistant-stubs/components/hydrawise/entity.pyi,sha256=WXNnUobw9O-PWZndjscGtxgGOfZPNVfCAQtaQwD5XX4,1353
|
1332
1332
|
homeassistant-stubs/components/hydrawise/sensor.pyi,sha256=5Y-bFxX0YJpriBFBX14V1006hH4Xt7GbuL7oT2p0-UY,2423
|
1333
1333
|
homeassistant-stubs/components/hydrawise/switch.pyi,sha256=2330J0ZhxV2VqpYarlK823dL3m2DbWWtNAHmzmUVZ-E,1889
|
1334
1334
|
homeassistant-stubs/components/hyperion/__init__.pyi,sha256=uHHQZBah-0HVjfWu62lI54URzJ4yUsaMxfP9HyhqIa4,1947
|
@@ -1981,7 +1981,7 @@ homeassistant-stubs/components/no_ip/__init__.pyi,sha256=LEgsEXyJpLsJ5B6QgcMM9YJ
|
|
1981
1981
|
homeassistant-stubs/components/notify/__init__.pyi,sha256=tzN01rqffcZbuR5pejVr8CGppcItR1okkbGB4IzAV7Q,2904
|
1982
1982
|
homeassistant-stubs/components/notify/const.pyi,sha256=avQYneEncK6P1GLR7dVBEO4_3uGkpherb8g5cfjww8I,269
|
1983
1983
|
homeassistant-stubs/components/notify/legacy.pyi,sha256=Zt11m8JHr6ls3TblSY87cLAfPZdor11WaMQC7oIcSzA,3059
|
1984
|
-
homeassistant-stubs/components/notify/repairs.pyi,sha256=
|
1984
|
+
homeassistant-stubs/components/notify/repairs.pyi,sha256=usKMrC4DWGmm8BKZEvYKeGwFKEe3gTZeKoXIEmWd1UY,585
|
1985
1985
|
homeassistant-stubs/components/notion/__init__.pyi,sha256=QvswX1nrNN9_hC1wYMQjd1ih09XGPbDTZBKx7_OKNng,2685
|
1986
1986
|
homeassistant-stubs/components/notion/binary_sensor.pyi,sha256=1OhLt3BI3-X5h3PynK6HC9NYpy46Ba-Fm_siGewHfcc,1958
|
1987
1987
|
homeassistant-stubs/components/notion/config_flow.pyi,sha256=crcDBjEh0QBBLfGB0YIqZxt51EfBSVBrk14Z2t0hZVM,1504
|
@@ -2056,7 +2056,7 @@ homeassistant-stubs/components/otbr/silabs_multiprotocol.pyi,sha256=1LJedRzwgPIn
|
|
2056
2056
|
homeassistant-stubs/components/otbr/util.pyi,sha256=y0xCwiI16hsaUqiojKnj4lsXILHyHM9q1LNG8qoN-zg,2367
|
2057
2057
|
homeassistant-stubs/components/otbr/websocket_api.pyi,sha256=3DYg6-i8hMj2jniX6qt4u5ExfqXMwUYIw2pCv-50zrk,1315
|
2058
2058
|
homeassistant-stubs/components/overkiz/__init__.pyi,sha256=YgGFCSHfyeMWo0gAkmRJzJWF-jxmcqDldXZ5Yjt3Kik,1916
|
2059
|
-
homeassistant-stubs/components/overkiz/alarm_control_panel.pyi,sha256=
|
2059
|
+
homeassistant-stubs/components/overkiz/alarm_control_panel.pyi,sha256=4ih09iFdNPEaCvnfs1tyoIR8XmTwWOgM3qOz-d-SAPo,4253
|
2060
2060
|
homeassistant-stubs/components/overkiz/binary_sensor.pyi,sha256=CoroXwjdzrO17BEl9yJDQZvowEQk-kgNSBKNnznTFUo,1650
|
2061
2061
|
homeassistant-stubs/components/overkiz/button.pyi,sha256=_Sny4TgFoLriCh20oRi-pQhsyszTba6KMegwyHmaO7U,1518
|
2062
2062
|
homeassistant-stubs/components/overkiz/climate.pyi,sha256=2wiYOJNLSQniHPn26JYsKPP_lsKZpFbC15fdu8WhYso,842
|
@@ -3080,7 +3080,7 @@ homeassistant-stubs/components/watttime/sensor.pyi,sha256=Qcldxk20zD8ZGKgudGSCCr
|
|
3080
3080
|
homeassistant-stubs/components/weather/__init__.pyi,sha256=B4Y2w6N6Wj-0VsBTa4o24i2a5qNAX0cnBtWs3zjpKOA,14005
|
3081
3081
|
homeassistant-stubs/components/weather/const.pyi,sha256=1-Bg2H4I24AouWuUigwtfraqrhxgGpdiqfV96dpxIi0,1453
|
3082
3082
|
homeassistant-stubs/components/weather/group.pyi,sha256=lTyLewkLqh24MOKN6IBWlkWhBjvJ4a_A6amRI-GCQe4,320
|
3083
|
-
homeassistant-stubs/components/weather/intent.pyi,sha256=
|
3083
|
+
homeassistant-stubs/components/weather/intent.pyi,sha256=f-0g-n635F7bxlmk7ntC-jPRzkm-DlOGejze5zH7Vdg,532
|
3084
3084
|
homeassistant-stubs/components/weather/significant_change.pyi,sha256=7R1-VxlhwZ-InIqhWWVUXSJHoBJAS722YKNZ5MaPZkI,1534
|
3085
3085
|
homeassistant-stubs/components/weather/websocket_api.pyi,sha256=ouoEhG-oCu-5VAtau3BWXL2I8sAvDd3lvbJJ9sFmv78,812
|
3086
3086
|
homeassistant-stubs/components/webhook/__init__.pyi,sha256=dVnjUsGywzfPVNd9GXsybCOrmyO17LG0VPb-dnsq50Y,2243
|
@@ -3308,7 +3308,7 @@ homeassistant-stubs/helpers/icon.pyi,sha256=VV4MQGjZqQBo3tpJdTkluBEZxosc-6ZGcnuU
|
|
3308
3308
|
homeassistant-stubs/helpers/importlib.pyi,sha256=qrWaOQ4nq-fiv2XPGvTudLF21llTWhoua5bdOLHnumQ,543
|
3309
3309
|
homeassistant-stubs/helpers/instance_id.pyi,sha256=1FcKLhfq3FTLieBr0Si9HMbMNz43MIXNkAKDxr2ptKM,281
|
3310
3310
|
homeassistant-stubs/helpers/integration_platform.pyi,sha256=KaY7sCc6VrXvdPLtEtZMKAQrasFLzait9b_L0--Hee0,2328
|
3311
|
-
homeassistant-stubs/helpers/intent.pyi,sha256=
|
3311
|
+
homeassistant-stubs/helpers/intent.pyi,sha256=NkA6as-zlSxQMcC0Izv7BiEFGxN9rmSRm0iiEtRNih4,11459
|
3312
3312
|
homeassistant-stubs/helpers/issue_registry.pyi,sha256=-nFO9SpW-rNL8DusXkjktFMFpN2PwdQpGPBQM36ecDo,4115
|
3313
3313
|
homeassistant-stubs/helpers/json.pyi,sha256=tCdDyP3NYTF3Jb6cASWYnepzie6YLlD0ikMPW7wevKQ,1452
|
3314
3314
|
homeassistant-stubs/helpers/label_registry.pyi,sha256=fDg71PDb5lXKPPZZ0c85retuA53X_YWvkdNlHW1tVI8,2846
|
@@ -3398,7 +3398,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3398
3398
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3399
3399
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=RTT2312P0TB9bA-rj3xdQK_J6sqVQE4LBJozgLH3oao,4621
|
3400
3400
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3401
|
-
homeassistant_stubs-2024.6.
|
3402
|
-
homeassistant_stubs-2024.6.
|
3403
|
-
homeassistant_stubs-2024.6.
|
3404
|
-
homeassistant_stubs-2024.6.
|
3401
|
+
homeassistant_stubs-2024.6.1.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
3402
|
+
homeassistant_stubs-2024.6.1.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3403
|
+
homeassistant_stubs-2024.6.1.dist-info/METADATA,sha256=9xT_wkIaiqzVT36ZCcR-CJBipPk_aLG0g8TvbRhHMN8,3011
|
3404
|
+
homeassistant_stubs-2024.6.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|