homeassistant-stubs 2024.11.0b4__py3-none-any.whl → 2024.11.0b5__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/intent/__init__.pyi +5 -0
- homeassistant-stubs/components/onkyo/media_player.pyi +4 -3
- homeassistant-stubs/components/unifiprotect/camera.pyi +3 -2
- homeassistant-stubs/helpers/intent.pyi +1 -0
- {homeassistant_stubs-2024.11.0b4.dist-info → homeassistant_stubs-2024.11.0b5.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.11.0b4.dist-info → homeassistant_stubs-2024.11.0b5.dist-info}/RECORD +8 -8
- {homeassistant_stubs-2024.11.0b4.dist-info → homeassistant_stubs-2024.11.0b5.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2024.11.0b4.dist-info → homeassistant_stubs-2024.11.0b5.dist-info}/licenses/LICENSE +0 -0
@@ -40,6 +40,11 @@ class GetCurrentTimeIntentHandler(intent.IntentHandler):
|
|
40
40
|
description: str
|
41
41
|
async def async_handle(self, intent_obj: intent.Intent) -> intent.IntentResponse: ...
|
42
42
|
|
43
|
+
class HelloIntentHandler(intent.IntentHandler):
|
44
|
+
intent_type: Incomplete
|
45
|
+
description: str
|
46
|
+
async def async_handle(self, intent_obj: intent.Intent) -> intent.IntentResponse: ...
|
47
|
+
|
43
48
|
class IntentHandleView(http.HomeAssistantView):
|
44
49
|
url: str
|
45
50
|
name: str
|
@@ -31,8 +31,8 @@ AUDIO_INFORMATION_MAPPING: Incomplete
|
|
31
31
|
VIDEO_INFORMATION_MAPPING: Incomplete
|
32
32
|
ISSUE_URL_PLACEHOLDER: str
|
33
33
|
type InputLibValue = str | tuple[str, ...]
|
34
|
-
_cmds: dict[str, InputLibValue]
|
35
34
|
|
35
|
+
def _input_lib_cmds(zone: str) -> dict[InputSource, InputLibValue]: ...
|
36
36
|
async def async_setup_platform(hass: HomeAssistant, config: ConfigType, async_add_entities: AddEntitiesCallback, discovery_info: DiscoveryInfoType | None = None) -> None: ...
|
37
37
|
async def async_setup_entry(hass: HomeAssistant, entry: OnkyoConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
|
38
38
|
|
@@ -48,9 +48,10 @@ class OnkyoMediaPlayer(MediaPlayerEntity):
|
|
48
48
|
_zone: Incomplete
|
49
49
|
_volume_resolution: Incomplete
|
50
50
|
_max_volume: Incomplete
|
51
|
-
|
52
|
-
|
51
|
+
_name_mapping: Incomplete
|
52
|
+
_reverse_name_mapping: Incomplete
|
53
53
|
_lib_mapping: Incomplete
|
54
|
+
_reverse_lib_mapping: Incomplete
|
54
55
|
_attr_source_list: Incomplete
|
55
56
|
_attr_extra_state_attributes: Incomplete
|
56
57
|
def __init__(self, receiver: Receiver, zone: str, *, volume_resolution: VolumeResolution, max_volume: float, sources: dict[InputSource, str]) -> None: ...
|
@@ -18,7 +18,8 @@ def _get_camera_channels(hass: HomeAssistant, entry: UFPConfigEntry, data: Prote
|
|
18
18
|
def _async_camera_entities(hass: HomeAssistant, entry: UFPConfigEntry, data: ProtectData, ufp_device: UFPCamera | None = None) -> list[ProtectDeviceEntity]: ...
|
19
19
|
async def async_setup_entry(hass: HomeAssistant, entry: UFPConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
|
20
20
|
|
21
|
-
|
21
|
+
_DISABLE_FEATURE: Incomplete
|
22
|
+
_ENABLE_FEATURE: Incomplete
|
22
23
|
|
23
24
|
class ProtectCamera(ProtectDeviceEntity, Camera):
|
24
25
|
device: UFPCamera
|
@@ -31,8 +32,8 @@ class ProtectCamera(ProtectDeviceEntity, Camera):
|
|
31
32
|
_attr_name: Incomplete
|
32
33
|
_attr_entity_registry_enabled_default: Incomplete
|
33
34
|
def __init__(self, data: ProtectData, camera: UFPCamera, channel: CameraChannel, is_default: bool, secure: bool, disable_stream: bool) -> None: ...
|
34
|
-
_stream_source: Incomplete
|
35
35
|
_attr_supported_features: Incomplete
|
36
|
+
_stream_source: Incomplete
|
36
37
|
def _async_set_stream_source(self) -> None: ...
|
37
38
|
_attr_motion_detection_enabled: Incomplete
|
38
39
|
_attr_is_recording: Incomplete
|
{homeassistant_stubs-2024.11.0b4.dist-info → homeassistant_stubs-2024.11.0b5.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.11.
|
3
|
+
Version: 2024.11.0b5
|
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.14,>=3.12
|
21
|
-
Requires-Dist: homeassistant==2024.11.
|
21
|
+
Requires-Dist: homeassistant==2024.11.0b5
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2024.11.0b4.dist-info → homeassistant_stubs-2024.11.0b5.dist-info}/RECORD
RENAMED
@@ -1513,7 +1513,7 @@ homeassistant-stubs/components/integration/__init__.pyi,sha256=64pi7wDuX9BJBHe7V
|
|
1513
1513
|
homeassistant-stubs/components/integration/config_flow.pyi,sha256=ODEUdIDWEGQxOjWPeb46ZCU6rpevm-L1_Of-u-9VqKU,1696
|
1514
1514
|
homeassistant-stubs/components/integration/const.pyi,sha256=R7lHqjIAH5GaVha03LbSKy6qe8HkDhWxXr7WCkvr2N0,283
|
1515
1515
|
homeassistant-stubs/components/integration/sensor.pyi,sha256=xhYG0ZUpEV04i-rPLHwftc3zQwoefa5YIy3m-sbZm2Y,7266
|
1516
|
-
homeassistant-stubs/components/intent/__init__.pyi,sha256=
|
1516
|
+
homeassistant-stubs/components/intent/__init__.pyi,sha256=byfPxkUFXRbmcpJ-2oGHHY_TGUuMrvOcD0y0koM8Gpo,2236
|
1517
1517
|
homeassistant-stubs/components/intent/const.pyi,sha256=3O_gvS76ZKuzViWqM8923WbKQEZ9umuZYPeJryQTmco,69
|
1518
1518
|
homeassistant-stubs/components/intent/timers.pyi,sha256=McG2RQz2JXT3vOctt5LaDaZuIhscLcvBB-ncd-50YyM,5603
|
1519
1519
|
homeassistant-stubs/components/intent_script/__init__.pyi,sha256=gf5BVHXiOrRChe3i4221JZ1l6Cj6E2KXhsAOWLV210k,1749
|
@@ -2227,7 +2227,7 @@ homeassistant-stubs/components/onewire/switch.pyi,sha256=OYXs1mmwlZs3ygVWGahHEmK
|
|
2227
2227
|
homeassistant-stubs/components/onkyo/__init__.pyi,sha256=kMCzfNkqKrCFA-TPmxBCfZtOVwNBuDOZgMXuIsambpo,1291
|
2228
2228
|
homeassistant-stubs/components/onkyo/config_flow.pyi,sha256=LdK8lHS74EASp3RHszV234A6kXqWbjWXpRYTyl-2_hE,2611
|
2229
2229
|
homeassistant-stubs/components/onkyo/const.pyi,sha256=6gQWzC4trsrcs9nZ03LFbK_4OvqXaBppAc0DbcZxjr8,1514
|
2230
|
-
homeassistant-stubs/components/onkyo/media_player.pyi,sha256=
|
2230
|
+
homeassistant-stubs/components/onkyo/media_player.pyi,sha256=s7Xr2NbwgoRZjedWH_Ogg24DW_AMleK8mJGZvPdSa8w,4554
|
2231
2231
|
homeassistant-stubs/components/onkyo/receiver.pyi,sha256=JfiJqQFItAZ7dg8EN8X4q9EgE6MTz9xr8h1Sc2nNpuo,1308
|
2232
2232
|
homeassistant-stubs/components/onkyo/services.pyi,sha256=l0bRaz5TL5YdbRMU1xhoImNNGW2Ti6JkmfVvJgBJGDs,604
|
2233
2233
|
homeassistant-stubs/components/open_meteo/__init__.pyi,sha256=b5_qJ_llgjYzMPtOeYdgxBJOjV3ipgNLN6rq1hM1WSc,855
|
@@ -3289,7 +3289,7 @@ homeassistant-stubs/components/unifi/hub/websocket.pyi,sha256=ah4FRwEgyW2bg_DNue
|
|
3289
3289
|
homeassistant-stubs/components/unifiprotect/__init__.pyi,sha256=oOQ7QuK_FzJOBKeMs48csCJFzEaaPg4xasMc97UiIuw,2140
|
3290
3290
|
homeassistant-stubs/components/unifiprotect/binary_sensor.pyi,sha256=EGlB7sny1AULN_7QTsbDbuucISYOcteR93PYI-HH3bw,4710
|
3291
3291
|
homeassistant-stubs/components/unifiprotect/button.pyi,sha256=td19PPm8Sl1SyTqF04Ld_34BqmwwAHoV9gOdyuCs_iA,2645
|
3292
|
-
homeassistant-stubs/components/unifiprotect/camera.pyi,sha256=
|
3292
|
+
homeassistant-stubs/components/unifiprotect/camera.pyi,sha256=DPp6Q5rQ15mVFFEdbvDQoyiRxnEeqgLgrQEAQBIvYME,2901
|
3293
3293
|
homeassistant-stubs/components/unifiprotect/config_flow.pyi,sha256=5ZvvN5V7C_X9O24z4E5LJv0sjXHiBZxjj8QODiJHH50,3659
|
3294
3294
|
homeassistant-stubs/components/unifiprotect/const.pyi,sha256=FnmmSKki5YDAYbSnM1JM2jGsNnW7GkaJdIvoJJW_uic,812
|
3295
3295
|
homeassistant-stubs/components/unifiprotect/data.pyi,sha256=L0skdVbyutcDSBSyWmwokVvNOTTGiTe7vcRAlM2jY0k,4040
|
@@ -3646,7 +3646,7 @@ homeassistant-stubs/helpers/icon.pyi,sha256=11cQTsTU4CeKCh6ZRQuzAwmKRy1I4WJAWMPV
|
|
3646
3646
|
homeassistant-stubs/helpers/importlib.pyi,sha256=qrWaOQ4nq-fiv2XPGvTudLF21llTWhoua5bdOLHnumQ,543
|
3647
3647
|
homeassistant-stubs/helpers/instance_id.pyi,sha256=1FcKLhfq3FTLieBr0Si9HMbMNz43MIXNkAKDxr2ptKM,281
|
3648
3648
|
homeassistant-stubs/helpers/integration_platform.pyi,sha256=KaY7sCc6VrXvdPLtEtZMKAQrasFLzait9b_L0--Hee0,2328
|
3649
|
-
homeassistant-stubs/helpers/intent.pyi,sha256=
|
3649
|
+
homeassistant-stubs/helpers/intent.pyi,sha256=bw4ilRnSTz48egT4g3ZgyT1gykjnyt9QvRTt1McvIYM,11852
|
3650
3650
|
homeassistant-stubs/helpers/issue_registry.pyi,sha256=bCVyxmN2FuJEP9WGGDLTzalrBunQYsgL68U3kHNbB8U,4135
|
3651
3651
|
homeassistant-stubs/helpers/json.pyi,sha256=PIxBwZx71qJb_-DKqyVJJoLeU4q8XlT2ODHt9eeL33Q,1798
|
3652
3652
|
homeassistant-stubs/helpers/label_registry.pyi,sha256=B906kP5NesUcWjf-_et7VYaIoVVsE2fPcNLSEpju5b0,3181
|
@@ -3733,7 +3733,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3733
3733
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3734
3734
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=QiGKfosJZpv3z8MePSrXiwF8SSxVnaHgMhYZQ351nBM,4692
|
3735
3735
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3736
|
-
homeassistant_stubs-2024.11.
|
3737
|
-
homeassistant_stubs-2024.11.
|
3738
|
-
homeassistant_stubs-2024.11.
|
3739
|
-
homeassistant_stubs-2024.11.
|
3736
|
+
homeassistant_stubs-2024.11.0b5.dist-info/METADATA,sha256=FbC9fUASIFPcAuFVsmv0R8r82V9Dv-D3z8nug-B93iU,2958
|
3737
|
+
homeassistant_stubs-2024.11.0b5.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
3738
|
+
homeassistant_stubs-2024.11.0b5.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3739
|
+
homeassistant_stubs-2024.11.0b5.dist-info/RECORD,,
|
{homeassistant_stubs-2024.11.0b4.dist-info → homeassistant_stubs-2024.11.0b5.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|