homeassistant-stubs 2024.6.0b9__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/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.0b9.dist-info → homeassistant_stubs-2024.6.1.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.6.0b9.dist-info → homeassistant_stubs-2024.6.1.dist-info}/RECORD +9 -9
- {homeassistant_stubs-2024.6.0b9.dist-info → homeassistant_stubs-2024.6.1.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.6.0b9.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
|
|
@@ -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.0b9.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
|
@@ -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
|