homeassistant-stubs 2024.5.0b4__py3-none-any.whl → 2024.5.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/homeassistant_sky_connect/config_flow.pyi +1 -0
- homeassistant-stubs/components/local_todo/todo.pyi +1 -0
- homeassistant-stubs/components/mqtt/client.pyi +2 -1
- homeassistant-stubs/config_entries.pyi +2 -2
- {homeassistant_stubs-2024.5.0b4.dist-info → homeassistant_stubs-2024.5.0b5.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.5.0b4.dist-info → homeassistant_stubs-2024.5.0b5.dist-info}/RECORD +8 -8
- {homeassistant_stubs-2024.5.0b4.dist-info → homeassistant_stubs-2024.5.0b5.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.5.0b4.dist-info → homeassistant_stubs-2024.5.0b5.dist-info}/WHEEL +0 -0
@@ -62,6 +62,7 @@ class HomeAssistantSkyConnectMultiPanOptionsFlowHandler(silabs_multiprotocol_add
|
|
62
62
|
def _hw_variant(self) -> HardwareVariant: ...
|
63
63
|
def _zha_name(self) -> str: ...
|
64
64
|
def _hardware_name(self) -> str: ...
|
65
|
+
async def async_step_flashing_complete(self, user_input: dict[str, Any] | None = None) -> ConfigFlowResult: ...
|
65
66
|
|
66
67
|
class HomeAssistantSkyConnectOptionsFlowHandler(BaseFirmwareInstallFlow, OptionsFlowWithConfigEntry):
|
67
68
|
_usb_info: Incomplete
|
@@ -6,6 +6,7 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
7
7
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
8
8
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
9
|
+
from homeassistant.setup import SetupPhases as SetupPhases, async_pause_setup as async_pause_setup
|
9
10
|
from ical.calendar import Calendar as Calendar
|
10
11
|
from ical.store import TodoStore
|
11
12
|
from ical.todo import Todo
|
@@ -122,8 +122,9 @@ class MQTT:
|
|
122
122
|
def _async_unsubscribe(self, topic: str) -> None: ...
|
123
123
|
async def _async_perform_subscriptions(self) -> None: ...
|
124
124
|
async def _async_perform_unsubscribes(self) -> None: ...
|
125
|
+
async def _async_resubscribe_and_publish_birth_message(self, birth_message: PublishMessage) -> None: ...
|
125
126
|
def _async_mqtt_on_connect(self, _mqttc: mqtt.Client, _userdata: None, _flags: dict[str, int], result_code: int, properties: mqtt.Properties | None = None) -> None: ...
|
126
|
-
|
127
|
+
def _async_queue_resubscribe(self) -> None: ...
|
127
128
|
def _matching_subscriptions(self, topic: str) -> list[Subscription]: ...
|
128
129
|
def _async_mqtt_on_message(self, _mqttc: mqtt.Client, _userdata: None, msg: mqtt.MQTTMessage) -> None: ...
|
129
130
|
def _async_mqtt_on_callback(self, _mqttc: mqtt.Client, _userdata: None, mid: int, _granted_qos_reason: tuple[int, ...] | mqtt.ReasonCodes | None = None, _properties_reason: mqtt.ReasonCodes | None = None) -> None: ...
|
@@ -133,7 +133,7 @@ class ConfigEntry:
|
|
133
133
|
update_listeners: list[UpdateListenerType]
|
134
134
|
_async_cancel_retry_setup: Callable[[], Any] | None
|
135
135
|
_on_unload: list[Callable[[], Coroutine[Any, Any, None] | None]] | None
|
136
|
-
|
136
|
+
setup_lock: asyncio.Lock
|
137
137
|
_reauth_lock: asyncio.Lock
|
138
138
|
_reconfigure_lock: asyncio.Lock
|
139
139
|
_tasks: set[asyncio.Future[Any]]
|
@@ -152,7 +152,7 @@ class ConfigEntry:
|
|
152
152
|
def as_json_fragment(self) -> json_fragment: ...
|
153
153
|
async def async_setup(self, hass: HomeAssistant, *, integration: loader.Integration | None = None) -> None: ...
|
154
154
|
def _async_setup_again(self, hass: HomeAssistant, *_: Any) -> None: ...
|
155
|
-
async def
|
155
|
+
async def async_setup_locked(self, hass: HomeAssistant, integration: loader.Integration | None = None) -> None: ...
|
156
156
|
def async_shutdown(self) -> None: ...
|
157
157
|
def async_cancel_retry_setup(self) -> None: ...
|
158
158
|
async def async_unload(self, hass: HomeAssistant, *, integration: loader.Integration | None = None) -> bool: ...
|
{homeassistant_stubs-2024.5.0b4.dist-info → homeassistant_stubs-2024.5.0b5.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.5.
|
3
|
+
Version: 2024.5.0b5
|
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.5.
|
19
|
+
Requires-Dist: homeassistant (==2024.5.0b5)
|
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
|
{homeassistant_stubs-2024.5.0b4.dist-info → homeassistant_stubs-2024.5.0b5.dist-info}/RECORD
RENAMED
@@ -1199,7 +1199,7 @@ homeassistant-stubs/components/homeassistant_hardware/__init__.pyi,sha256=pnttmk
|
|
1199
1199
|
homeassistant-stubs/components/homeassistant_hardware/const.pyi,sha256=du-kWOIF0O9ZtwKARRqyDsa_oF1-sPmEG-453Wo1b1U,121
|
1200
1200
|
homeassistant-stubs/components/homeassistant_hardware/silabs_multiprotocol_addon.pyi,sha256=bDDJHVPkyQUvPAxHQBxJ1sTUgDoJ7iEU_bW013e8Qpk,7467
|
1201
1201
|
homeassistant-stubs/components/homeassistant_sky_connect/__init__.pyi,sha256=J2RkemDNK0rY9HC05T4zh16LpMgeaoZT4zCnKP5en0I,502
|
1202
|
-
homeassistant-stubs/components/homeassistant_sky_connect/config_flow.pyi,sha256=
|
1202
|
+
homeassistant-stubs/components/homeassistant_sky_connect/config_flow.pyi,sha256=5Vf-idh8KsSH2AfVRr26V2dmRk4rDpV4gE7urdrLUEw,5411
|
1203
1203
|
homeassistant-stubs/components/homeassistant_sky_connect/const.pyi,sha256=jKspYLTvaHFFH1rmsUWGGum262k5VagcyXCNKwket-s,705
|
1204
1204
|
homeassistant-stubs/components/homeassistant_sky_connect/hardware.pyi,sha256=i4YnoRKte_Lc3UWSQZCNjbmYDN-Af2_N_9lVJtoCZ8s,373
|
1205
1205
|
homeassistant-stubs/components/homeassistant_sky_connect/util.pyi,sha256=J6iXBSaWly5ojQvl0O_Ib-CxdMtklUsk_TYKwBcqPhA,1835
|
@@ -1588,7 +1588,7 @@ homeassistant-stubs/components/local_todo/__init__.pyi,sha256=PukXk2AemMUIRrLFro
|
|
1588
1588
|
homeassistant-stubs/components/local_todo/config_flow.pyi,sha256=OIYpreIuRi1IAf9WXporPGrq2TsVRObCWVGNVd8Wdxg,558
|
1589
1589
|
homeassistant-stubs/components/local_todo/const.pyi,sha256=c2LoyxXuf6BLf9ubXFHtMFuw9n1J6KqBKKt94ljvIKY,59
|
1590
1590
|
homeassistant-stubs/components/local_todo/store.pyi,sha256=Bi0t0Wj3r2G5jwC961QbcAsE2XfOzzy9G8PhtfD0O4Y,472
|
1591
|
-
homeassistant-stubs/components/local_todo/todo.pyi,sha256=
|
1591
|
+
homeassistant-stubs/components/local_todo/todo.pyi,sha256=Sol-ydcTVSXZvqb-3rOy-ANT6I2fXhW0Lr_yAoevgIA,2073
|
1592
1592
|
homeassistant-stubs/components/lock/__init__.pyi,sha256=U8j8xFjb1uq0qNLifJYM3k2Bp68C4PaMlJqWEzk2q-c,4411
|
1593
1593
|
homeassistant-stubs/components/lock/device_action.pyi,sha256=nds_dhqIaIWbZYwuXFxUZbmF4fGylpwTfxWsywPdADg,1170
|
1594
1594
|
homeassistant-stubs/components/lock/device_condition.pyi,sha256=MPxXYyUG20b1IgTofWjVWjItggZ7jTR51B9Jb2ZpqoA,1071
|
@@ -1753,7 +1753,7 @@ homeassistant-stubs/components/mqtt/alarm_control_panel.pyi,sha256=GY_e5FcGWJkMu
|
|
1753
1753
|
homeassistant-stubs/components/mqtt/binary_sensor.pyi,sha256=2KsKKklC8ZYrxBNnck6ptIt4LKV0dqaZuEiU8UBtZPs,3030
|
1754
1754
|
homeassistant-stubs/components/mqtt/button.pyi,sha256=v0a_HI2SXDq9OrWYmGe_4QyHodedsvysMVCANer76uQ,1913
|
1755
1755
|
homeassistant-stubs/components/mqtt/camera.pyi,sha256=ETti_q5ZP-98HP5oN9UF5tegTGjDzMsDdsitW20_OhA,2046
|
1756
|
-
homeassistant-stubs/components/mqtt/client.pyi,sha256=
|
1756
|
+
homeassistant-stubs/components/mqtt/client.pyi,sha256=RAudiOu45FXV14HL4OIfWlLTMQiP0iLBrrDs4fZ4APA,9117
|
1757
1757
|
homeassistant-stubs/components/mqtt/climate.pyi,sha256=44wn21ev_J1C8H_gy76oX-rUu_6jZKb9PVL95IqedM4,8593
|
1758
1758
|
homeassistant-stubs/components/mqtt/config.pyi,sha256=ZzcogEgaXfMFwZIYMPiIpTSMnuMKx6Xsvv30vbB8iXw,721
|
1759
1759
|
homeassistant-stubs/components/mqtt/config_flow.pyi,sha256=v2BB9K_j8XM3zrjjSI6gjlFG9H7YoyGgdv9cThbZcV4,5410
|
@@ -3182,7 +3182,7 @@ homeassistant-stubs/components/zwave_js/triggers/trigger_helpers.pyi,sha256=9XFy
|
|
3182
3182
|
homeassistant-stubs/components/zwave_js/triggers/value_updated.pyi,sha256=G4qlSHg9vpzczpN5zKl0ZLyO8Ebvd4e5NKy3t3aFosM,1950
|
3183
3183
|
homeassistant-stubs/components/zwave_js/update.pyi,sha256=DZ89qey4VhEIz4DzjIi5tNowLsJcyz6I-h6zSysXJ10,3847
|
3184
3184
|
homeassistant-stubs/config.pyi,sha256=Lxa7qbBd2H-T7R5RHmnlNQT4xZ8uSMmI9mtsDNEqLUU,8894
|
3185
|
-
homeassistant-stubs/config_entries.pyi,sha256=
|
3185
|
+
homeassistant-stubs/config_entries.pyi,sha256=NcwrNngbVve77lyFU0J2XlbJhiopvCmZ1HW5WILKkbM,19065
|
3186
3186
|
homeassistant-stubs/const.pyi,sha256=l99s93zsWlDvq2v8cRJFKqEBt7LX0QVHFNhjnmeFUPM,24581
|
3187
3187
|
homeassistant-stubs/core.pyi,sha256=Yd221eUDnsd6vqfzMfF8awDv62rTt0O9x2xJtoqvBow,24858
|
3188
3188
|
homeassistant-stubs/data_entry_flow.pyi,sha256=tpi3kK2SZSiV1jbXEWChCc34T91d5Ew9IvBJSo_meOU,8238
|
@@ -3322,7 +3322,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3322
3322
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3323
3323
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=8rCANDOO3yTLdOqK3AZNmpv-dQD7JVKP1VKDhnEjK3Y,4239
|
3324
3324
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3325
|
-
homeassistant_stubs-2024.5.
|
3326
|
-
homeassistant_stubs-2024.5.
|
3327
|
-
homeassistant_stubs-2024.5.
|
3328
|
-
homeassistant_stubs-2024.5.
|
3325
|
+
homeassistant_stubs-2024.5.0b5.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3326
|
+
homeassistant_stubs-2024.5.0b5.dist-info/METADATA,sha256=hboWou33vKckZvUQAd4fBBHCkcGm1mwYdiqN8plmxJc,3015
|
3327
|
+
homeassistant_stubs-2024.5.0b5.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
3328
|
+
homeassistant_stubs-2024.5.0b5.dist-info/RECORD,,
|
{homeassistant_stubs-2024.5.0b4.dist-info → homeassistant_stubs-2024.5.0b5.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|