homeassistant-stubs 2024.6.0b2__py3-none-any.whl → 2024.6.0b4__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/brother/__init__.pyi +2 -3
- homeassistant-stubs/components/brother/config_flow.pyi +1 -1
- homeassistant-stubs/components/brother/const.pyi +0 -1
- homeassistant-stubs/components/evohome/__init__.pyi +1 -1
- homeassistant-stubs/components/holiday/calendar.pyi +1 -0
- homeassistant-stubs/components/intent_script/__init__.pyi +4 -1
- homeassistant-stubs/components/jewish_calendar/__init__.pyi +5 -1
- homeassistant-stubs/components/jewish_calendar/binary_sensor.pyi +1 -1
- homeassistant-stubs/components/jewish_calendar/sensor.pyi +1 -1
- homeassistant-stubs/components/tag/__init__.pyi +1 -2
- homeassistant-stubs/helpers/device_registry.pyi +1 -1
- homeassistant-stubs/helpers/llm.pyi +11 -10
- {homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b4.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b4.dist-info}/RECORD +16 -17
- homeassistant-stubs/components/brother/utils.pyi +0 -10
- {homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b4.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b4.dist-info}/WHEEL +0 -0
@@ -1,8 +1,7 @@
|
|
1
|
-
from .const import DOMAIN as DOMAIN, SNMP_ENGINE as SNMP_ENGINE
|
2
1
|
from .coordinator import BrotherDataUpdateCoordinator as BrotherDataUpdateCoordinator
|
3
|
-
from .utils import get_snmp_engine as get_snmp_engine
|
4
2
|
from _typeshed import Incomplete
|
5
|
-
from homeassistant.
|
3
|
+
from homeassistant.components.snmp import async_get_snmp_engine as async_get_snmp_engine
|
4
|
+
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
6
5
|
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_TYPE as CONF_TYPE, Platform as Platform
|
7
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
8
7
|
from homeassistant.exceptions import ConfigEntryNotReady as ConfigEntryNotReady
|
@@ -1,7 +1,7 @@
|
|
1
1
|
from .const import DOMAIN as DOMAIN, PRINTER_TYPES as PRINTER_TYPES
|
2
|
-
from .utils import get_snmp_engine as get_snmp_engine
|
3
2
|
from _typeshed import Incomplete
|
4
3
|
from homeassistant.components import zeroconf as zeroconf
|
4
|
+
from homeassistant.components.snmp import async_get_snmp_engine as async_get_snmp_engine
|
5
5
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult
|
6
6
|
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_TYPE as CONF_TYPE
|
7
7
|
from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
|
@@ -55,7 +55,7 @@ class EvoBroker:
|
|
55
55
|
_location: Incomplete
|
56
56
|
config: Incomplete
|
57
57
|
tcs: Incomplete
|
58
|
-
|
58
|
+
loc_utc_offset: Incomplete
|
59
59
|
temps: Incomplete
|
60
60
|
def __init__(self, hass: HomeAssistant, client: evo.EvohomeClient, client_v1: ev1.EvohomeClient | None, store: Store[dict[str, Any]], params: ConfigType) -> None: ...
|
61
61
|
async def save_auth_tokens(self) -> None: ...
|
@@ -10,6 +10,7 @@ from homeassistant.helpers.device_registry import DeviceEntryType as DeviceEntry
|
|
10
10
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
11
11
|
from homeassistant.helpers.event import async_track_point_in_utc_time as async_track_point_in_utc_time
|
12
12
|
|
13
|
+
def _get_obj_holidays_and_language(country: str, province: str | None, language: str) -> tuple[HolidayBase, str]: ...
|
13
14
|
async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
|
14
15
|
|
15
16
|
class HolidayCalendarEntity(CalendarEntity):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
from _typeshed import Incomplete
|
2
2
|
from homeassistant.components.script import CONF_MODE as CONF_MODE
|
3
|
-
from homeassistant.const import CONF_TYPE as CONF_TYPE, SERVICE_RELOAD as SERVICE_RELOAD
|
3
|
+
from homeassistant.const import CONF_DESCRIPTION as CONF_DESCRIPTION, CONF_TYPE as CONF_TYPE, SERVICE_RELOAD as SERVICE_RELOAD
|
4
4
|
from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as ServiceCall
|
5
5
|
from homeassistant.helpers import intent as intent, script as script, service as service, template as template
|
6
6
|
from homeassistant.helpers.reload import async_integration_yaml_config as async_integration_yaml_config
|
@@ -9,6 +9,7 @@ from typing import TypedDict
|
|
9
9
|
|
10
10
|
_LOGGER: Incomplete
|
11
11
|
DOMAIN: str
|
12
|
+
CONF_PLATFORMS: str
|
12
13
|
CONF_INTENTS: str
|
13
14
|
CONF_SPEECH: str
|
14
15
|
CONF_REPROMPT: str
|
@@ -39,5 +40,7 @@ class _IntentCardData(TypedDict):
|
|
39
40
|
class ScriptIntentHandler(intent.IntentHandler):
|
40
41
|
intent_type: Incomplete
|
41
42
|
config: Incomplete
|
43
|
+
description: Incomplete
|
44
|
+
platforms: Incomplete
|
42
45
|
def __init__(self, intent_type: str, config: ConfigType) -> None: ...
|
43
46
|
async def async_handle(self, intent_obj: intent.Intent) -> intent.IntentResponse: ...
|
@@ -1,9 +1,12 @@
|
|
1
|
+
import homeassistant.helpers.entity_registry as er
|
2
|
+
from .binary_sensor import BINARY_SENSORS as BINARY_SENSORS
|
1
3
|
from .const import CONF_CANDLE_LIGHT_MINUTES as CONF_CANDLE_LIGHT_MINUTES, CONF_DIASPORA as CONF_DIASPORA, CONF_HAVDALAH_OFFSET_MINUTES as CONF_HAVDALAH_OFFSET_MINUTES, DEFAULT_CANDLE_LIGHT as DEFAULT_CANDLE_LIGHT, DEFAULT_DIASPORA as DEFAULT_DIASPORA, DEFAULT_HAVDALAH_OFFSET_MINUTES as DEFAULT_HAVDALAH_OFFSET_MINUTES, DEFAULT_LANGUAGE as DEFAULT_LANGUAGE, DEFAULT_NAME as DEFAULT_NAME, DOMAIN as DOMAIN
|
4
|
+
from .sensor import INFO_SENSORS as INFO_SENSORS, TIME_SENSORS as TIME_SENSORS
|
2
5
|
from _typeshed import Incomplete
|
3
6
|
from hdate import Location
|
4
7
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry, SOURCE_IMPORT as SOURCE_IMPORT
|
5
8
|
from homeassistant.const import CONF_ELEVATION as CONF_ELEVATION, CONF_LANGUAGE as CONF_LANGUAGE, CONF_LATITUDE as CONF_LATITUDE, CONF_LOCATION as CONF_LOCATION, CONF_LONGITUDE as CONF_LONGITUDE, CONF_NAME as CONF_NAME, CONF_TIME_ZONE as CONF_TIME_ZONE, Platform as Platform
|
6
|
-
from homeassistant.core import HomeAssistant as HomeAssistant
|
9
|
+
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
7
10
|
from homeassistant.helpers.issue_registry import IssueSeverity as IssueSeverity, async_create_issue as async_create_issue
|
8
11
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
9
12
|
|
@@ -14,3 +17,4 @@ def get_unique_prefix(location: Location, language: str, candle_lighting_offset:
|
|
14
17
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
15
18
|
async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool: ...
|
16
19
|
async def async_unload_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool: ...
|
20
|
+
def async_update_unique_ids(ent_reg: er.EntityRegistry, new_prefix: str, old_prefix: str) -> None: ...
|
@@ -35,7 +35,7 @@ class JewishCalendarBinarySensor(BinarySensorEntity):
|
|
35
35
|
_candle_lighting_offset: Incomplete
|
36
36
|
_havdalah_offset: Incomplete
|
37
37
|
_update_unsub: Incomplete
|
38
|
-
def __init__(self, data: dict[str, Any], description: JewishCalendarBinarySensorEntityDescription) -> None: ...
|
38
|
+
def __init__(self, entry_id: str, data: dict[str, Any], description: JewishCalendarBinarySensorEntityDescription) -> None: ...
|
39
39
|
@property
|
40
40
|
def is_on(self) -> bool: ...
|
41
41
|
def _get_zmanim(self) -> Zmanim: ...
|
@@ -27,7 +27,7 @@ class JewishCalendarSensor(SensorEntity):
|
|
27
27
|
_havdalah_offset: Incomplete
|
28
28
|
_diaspora: Incomplete
|
29
29
|
_holiday_attrs: Incomplete
|
30
|
-
def __init__(self, data: dict[str, Any], description: SensorEntityDescription) -> None: ...
|
30
|
+
def __init__(self, entry_id: str, data: dict[str, Any], description: SensorEntityDescription) -> None: ...
|
31
31
|
_attr_native_value: Incomplete
|
32
32
|
async def async_update(self) -> None: ...
|
33
33
|
def make_zmanim(self, date: Date) -> Zmanim: ...
|
@@ -60,13 +60,12 @@ class TagEntity(Entity):
|
|
60
60
|
_unrecorded_attributes: Incomplete
|
61
61
|
_attr_translation_key = DOMAIN
|
62
62
|
_attr_should_poll: bool
|
63
|
-
hass: Incomplete
|
64
63
|
_attr_name: Incomplete
|
65
64
|
_tag_id: Incomplete
|
66
65
|
_attr_unique_id: Incomplete
|
67
66
|
_last_device_id: Incomplete
|
68
67
|
_last_scanned: Incomplete
|
69
|
-
def __init__(self,
|
68
|
+
def __init__(self, name: str, tag_id: str, last_scanned: str | None, device_id: str | None) -> None: ...
|
70
69
|
def async_handle_event(self, device_id: str | None, last_scanned: str | None) -> None: ...
|
71
70
|
@property
|
72
71
|
def state(self) -> str | None: ...
|
@@ -177,7 +177,7 @@ class DeviceRegistry(BaseRegistry[dict[str, list[dict[str, Any]]]]):
|
|
177
177
|
def _async_get_deleted_device(self, identifiers: set[tuple[str, str]], connections: set[tuple[str, str]]) -> DeletedDeviceEntry | None: ...
|
178
178
|
def _substitute_name_placeholders(self, domain: str, name: str, translation_placeholders: Mapping[str, str]) -> str: ...
|
179
179
|
def async_get_or_create(self, *, config_entry_id: str, configuration_url: str | URL | None | UndefinedType = ..., connections: set[tuple[str, str]] | None | UndefinedType = ..., default_manufacturer: str | None | UndefinedType = ..., default_model: str | None | UndefinedType = ..., default_name: str | None | UndefinedType = ..., disabled_by: DeviceEntryDisabler | None | UndefinedType = ..., entry_type: DeviceEntryType | None | UndefinedType = ..., hw_version: str | None | UndefinedType = ..., identifiers: set[tuple[str, str]] | None | UndefinedType = ..., manufacturer: str | None | UndefinedType = ..., model: str | None | UndefinedType = ..., name: str | None | UndefinedType = ..., serial_number: str | None | UndefinedType = ..., suggested_area: str | None | UndefinedType = ..., sw_version: str | None | UndefinedType = ..., translation_key: str | None = None, translation_placeholders: Mapping[str, str] | None = None, via_device: tuple[str, str] | None | UndefinedType = ...) -> DeviceEntry: ...
|
180
|
-
def async_update_device(self, device_id: str, *, add_config_entry_id: str | UndefinedType = ..., area_id: str | None | UndefinedType = ..., configuration_url: str | URL | None | UndefinedType = ..., disabled_by: DeviceEntryDisabler | None | UndefinedType = ..., entry_type: DeviceEntryType | None | UndefinedType = ..., hw_version: str | None | UndefinedType = ..., labels: set[str] | UndefinedType = ..., manufacturer: str | None | UndefinedType = ..., merge_connections: set[tuple[str, str]] | UndefinedType = ..., merge_identifiers: set[tuple[str, str]] | UndefinedType = ..., model: str | None | UndefinedType = ..., name_by_user: str | None | UndefinedType = ..., name: str | None | UndefinedType = ..., new_identifiers: set[tuple[str, str]] | UndefinedType = ..., remove_config_entry_id: str | UndefinedType = ..., serial_number: str | None | UndefinedType = ..., suggested_area: str | None | UndefinedType = ..., sw_version: str | None | UndefinedType = ..., via_device_id: str | None | UndefinedType = ...) -> DeviceEntry | None: ...
|
180
|
+
def async_update_device(self, device_id: str, *, add_config_entry_id: str | UndefinedType = ..., area_id: str | None | UndefinedType = ..., configuration_url: str | URL | None | UndefinedType = ..., disabled_by: DeviceEntryDisabler | None | UndefinedType = ..., entry_type: DeviceEntryType | None | UndefinedType = ..., hw_version: str | None | UndefinedType = ..., labels: set[str] | UndefinedType = ..., manufacturer: str | None | UndefinedType = ..., merge_connections: set[tuple[str, str]] | UndefinedType = ..., merge_identifiers: set[tuple[str, str]] | UndefinedType = ..., model: str | None | UndefinedType = ..., name_by_user: str | None | UndefinedType = ..., name: str | None | UndefinedType = ..., new_connections: set[tuple[str, str]] | UndefinedType = ..., new_identifiers: set[tuple[str, str]] | UndefinedType = ..., remove_config_entry_id: str | UndefinedType = ..., serial_number: str | None | UndefinedType = ..., suggested_area: str | None | UndefinedType = ..., sw_version: str | None | UndefinedType = ..., via_device_id: str | None | UndefinedType = ...) -> DeviceEntry | None: ...
|
181
181
|
def async_remove_device(self, device_id: str) -> None: ...
|
182
182
|
async def async_load(self) -> None: ...
|
183
183
|
def _data_to_save(self) -> dict[str, Any]: ...
|
@@ -7,6 +7,7 @@ from abc import ABC, abstractmethod
|
|
7
7
|
from dataclasses import dataclass
|
8
8
|
from homeassistant.components.climate.intent import INTENT_GET_TEMPERATURE as INTENT_GET_TEMPERATURE
|
9
9
|
from homeassistant.components.conversation.trace import ConversationTraceEventType as ConversationTraceEventType, async_conversation_trace_append as async_conversation_trace_append
|
10
|
+
from homeassistant.components.cover.intent import INTENT_CLOSE_COVER as INTENT_CLOSE_COVER, INTENT_OPEN_COVER as INTENT_OPEN_COVER
|
10
11
|
from homeassistant.components.homeassistant.exposed_entities import async_should_expose as async_should_expose
|
11
12
|
from homeassistant.components.intent import async_device_supports_timers as async_device_supports_timers
|
12
13
|
from homeassistant.components.weather.intent import INTENT_GET_WEATHER as INTENT_GET_WEATHER
|
@@ -22,11 +23,11 @@ DEFAULT_INSTRUCTIONS_PROMPT: str
|
|
22
23
|
def async_render_no_api_prompt(hass: HomeAssistant) -> str: ...
|
23
24
|
def _async_get_apis(hass: HomeAssistant) -> dict[str, API]: ...
|
24
25
|
def async_register_api(hass: HomeAssistant, api: API) -> None: ...
|
25
|
-
async def async_get_api(hass: HomeAssistant, api_id: str,
|
26
|
+
async def async_get_api(hass: HomeAssistant, api_id: str, llm_context: LLMContext) -> APIInstance: ...
|
26
27
|
def async_get_apis(hass: HomeAssistant) -> list[API]: ...
|
27
28
|
|
28
29
|
@dataclass(slots=True)
|
29
|
-
class
|
30
|
+
class LLMContext:
|
30
31
|
platform: str
|
31
32
|
context: Context | None
|
32
33
|
user_prompt: str | None
|
@@ -46,17 +47,17 @@ class Tool(metaclass=abc.ABCMeta):
|
|
46
47
|
description: str | None
|
47
48
|
parameters: vol.Schema
|
48
49
|
@abstractmethod
|
49
|
-
async def async_call(self, hass: HomeAssistant, tool_input: ToolInput,
|
50
|
+
async def async_call(self, hass: HomeAssistant, tool_input: ToolInput, llm_context: LLMContext) -> JsonObjectType: ...
|
50
51
|
def __repr__(self) -> str: ...
|
51
52
|
|
52
53
|
@dataclass
|
53
54
|
class APIInstance:
|
54
55
|
api: API
|
55
56
|
api_prompt: str
|
56
|
-
|
57
|
+
llm_context: LLMContext
|
57
58
|
tools: list[Tool]
|
58
59
|
async def async_call_tool(self, tool_input: ToolInput) -> JsonObjectType: ...
|
59
|
-
def __init__(self, api, api_prompt,
|
60
|
+
def __init__(self, api, api_prompt, llm_context, tools) -> None: ...
|
60
61
|
|
61
62
|
@dataclass(slots=True, kw_only=True)
|
62
63
|
class API(ABC, metaclass=abc.ABCMeta):
|
@@ -64,7 +65,7 @@ class API(ABC, metaclass=abc.ABCMeta):
|
|
64
65
|
id: str
|
65
66
|
name: str
|
66
67
|
@abstractmethod
|
67
|
-
async def async_get_api_instance(self,
|
68
|
+
async def async_get_api_instance(self, llm_context: LLMContext) -> APIInstance: ...
|
68
69
|
def __init__(self, *, hass, id, name) -> None: ...
|
69
70
|
|
70
71
|
class IntentTool(Tool):
|
@@ -72,13 +73,13 @@ class IntentTool(Tool):
|
|
72
73
|
description: Incomplete
|
73
74
|
parameters: Incomplete
|
74
75
|
def __init__(self, intent_handler: intent.IntentHandler) -> None: ...
|
75
|
-
async def async_call(self, hass: HomeAssistant, tool_input: ToolInput,
|
76
|
+
async def async_call(self, hass: HomeAssistant, tool_input: ToolInput, llm_context: LLMContext) -> JsonObjectType: ...
|
76
77
|
|
77
78
|
class AssistAPI(API):
|
78
79
|
IGNORE_INTENTS: Incomplete
|
79
80
|
def __init__(self, hass: HomeAssistant) -> None: ...
|
80
|
-
async def async_get_api_instance(self,
|
81
|
-
def _async_get_api_prompt(self,
|
82
|
-
def _async_get_tools(self,
|
81
|
+
async def async_get_api_instance(self, llm_context: LLMContext) -> APIInstance: ...
|
82
|
+
def _async_get_api_prompt(self, llm_context: LLMContext, exposed_entities: dict | None) -> str: ...
|
83
|
+
def _async_get_tools(self, llm_context: LLMContext, exposed_entities: dict | None) -> list[Tool]: ...
|
83
84
|
|
84
85
|
def _get_exposed_entities(hass: HomeAssistant, assistant: str) -> dict[str, dict[str, Any]]: ...
|
{homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b4.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.0b4
|
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.0b4)
|
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.6.0b2.dist-info → homeassistant_stubs-2024.6.0b4.dist-info}/RECORD
RENAMED
@@ -473,13 +473,12 @@ homeassistant-stubs/components/braviatv/diagnostics.pyi,sha256=EPb_QrZckydm2OX_K
|
|
473
473
|
homeassistant-stubs/components/braviatv/entity.pyi,sha256=VPCWboKR9sPyBWPuz_LfZh4EhdxyveQJwbeOm8sbFSc,592
|
474
474
|
homeassistant-stubs/components/braviatv/media_player.pyi,sha256=o64gycshk_nazW5KEKK2vi-FDSrfxoGO7LI6R1sRPyY,3273
|
475
475
|
homeassistant-stubs/components/braviatv/remote.pyi,sha256=0yjfUdA1I7eZtkAHlewOqTgYLDTWT0wGwIIu7Vu7Zo8,951
|
476
|
-
homeassistant-stubs/components/brother/__init__.pyi,sha256=
|
477
|
-
homeassistant-stubs/components/brother/config_flow.pyi,sha256=
|
478
|
-
homeassistant-stubs/components/brother/const.pyi,sha256=
|
476
|
+
homeassistant-stubs/components/brother/__init__.pyi,sha256=6f2yXWiaiLsA4BB6heTeQMQJuqjWzUrLGx78OitpQiQ,785
|
477
|
+
homeassistant-stubs/components/brother/config_flow.pyi,sha256=SVwy30-CS8S7kG6Wv9Y38hVWKYd4VlQ1qwA4GMjoAiQ,1151
|
478
|
+
homeassistant-stubs/components/brother/const.pyi,sha256=UiyuZ1BD-NPibg7fJGyfaW7ik5tv6UD-GAjAsZLgbxQ,139
|
479
479
|
homeassistant-stubs/components/brother/coordinator.pyi,sha256=exdoysDRpD8HPXjMjw2wnVL6SJKVKzcjySBcxXg_xf0,610
|
480
480
|
homeassistant-stubs/components/brother/diagnostics.pyi,sha256=wHcfHmLHT2-SGmJ2G8r1r7sDlUNncOmQgVSc2tB1xL0,264
|
481
481
|
homeassistant-stubs/components/brother/sensor.pyi,sha256=NQRyTCYhGNvKkBpKhNhkN8jyshmCLnwZoeMevfTE3KM,2371
|
482
|
-
homeassistant-stubs/components/brother/utils.pyi,sha256=80XZ3KkMvEJieo-0LIcxI82Uv8jrplfccD-c2ZXWW8c,446
|
483
482
|
homeassistant-stubs/components/browser/__init__.pyi,sha256=AZsijjI191wYaG9Ba3_xnIq2BuJAdGvugiKtx-92T0s,443
|
484
483
|
homeassistant-stubs/components/bthome/__init__.pyi,sha256=qKQPTmQXySHCUQIbH9QKQJFEC7SWbuDt3yikI4PmV-M,1687
|
485
484
|
homeassistant-stubs/components/bthome/binary_sensor.pyi,sha256=b_KIta4k3zS4n1pavKmmiQo4jYav57KZtS6ZeD_QKl4,1694
|
@@ -951,7 +950,7 @@ homeassistant-stubs/components/evil_genius_labs/coordinator.pyi,sha256=ij1-DuQnW
|
|
951
950
|
homeassistant-stubs/components/evil_genius_labs/diagnostics.pyi,sha256=VkRP3kz6JMwAUCPGbKmdkF_1v4V_KzRdied7lWQ_H6U,534
|
952
951
|
homeassistant-stubs/components/evil_genius_labs/light.pyi,sha256=fz7cXwjUFF3dP8jZ6lgoK9ykbDK1hZ-ufqhQyEc2N_s,1543
|
953
952
|
homeassistant-stubs/components/evil_genius_labs/util.pyi,sha256=7ZsqgdKI-I9sc5gvBqNf5lBqqVn5N-lD_dWJUAsVNd8,340
|
954
|
-
homeassistant-stubs/components/evohome/__init__.pyi,sha256=
|
953
|
+
homeassistant-stubs/components/evohome/__init__.pyi,sha256=0-k5bG18TIaGczAlQcr0osVdhJurNha4ylkLgRU0RLQ,4291
|
955
954
|
homeassistant-stubs/components/evohome/climate.pyi,sha256=eLUYZz321YPqbp01lo0ETIz8iDkUuDAk_C_63RFUDEk,4234
|
956
955
|
homeassistant-stubs/components/evohome/const.pyi,sha256=dkv4fcsH0D-gpiAeGFzA4wUkXcPcFxoTbtgDzM1vwWU,245
|
957
956
|
homeassistant-stubs/components/evohome/water_heater.pyi,sha256=y0LMiUN4L5U_aaV8iTV8RTuhZ9MEnSgA-QmvKUXohOk,2025
|
@@ -1190,7 +1189,7 @@ homeassistant-stubs/components/history_stats/data.pyi,sha256=25Fe3HLUGRhyeY5CrfV
|
|
1190
1189
|
homeassistant-stubs/components/history_stats/helpers.pyi,sha256=rUjQRDtq3uruvmiyMdRokbcsSIWqi7OyIG01ab8iQEw,639
|
1191
1190
|
homeassistant-stubs/components/history_stats/sensor.pyi,sha256=KLB0KsNG2avhmltstMAtU-fncCTO16nXjSjqZOzWUc8,2685
|
1192
1191
|
homeassistant-stubs/components/holiday/__init__.pyi,sha256=Q_fYGejdaBSGFbV1D-W_zmavp1b2Ku0GXHrPwRSoiqk,555
|
1193
|
-
homeassistant-stubs/components/holiday/calendar.pyi,sha256=
|
1192
|
+
homeassistant-stubs/components/holiday/calendar.pyi,sha256=0HT3BRdYprt8cXSZoNqxMfMBlWhyZEWXs1CM6AxGloY,2144
|
1194
1193
|
homeassistant-stubs/components/holiday/config_flow.pyi,sha256=qUo9nwxYGIja9x7dGo4ZMcLiPzYQC94nszhES-ahkGk,1200
|
1195
1194
|
homeassistant-stubs/components/holiday/const.pyi,sha256=se9wTvKnOtS4iGygevgAVf9LNoAfVHN6SS2Dym9n87Q,71
|
1196
1195
|
homeassistant-stubs/components/homeassistant/__init__.pyi,sha256=u8fm-GPVErSIkYTQ20py7dVgdKIM9CbnAXiPEA4hUNY,2559
|
@@ -1385,7 +1384,7 @@ homeassistant-stubs/components/integration/sensor.pyi,sha256=ONreJ17st9UT6-3wt4f
|
|
1385
1384
|
homeassistant-stubs/components/intent/__init__.pyi,sha256=A6Gtd6LZ4_QBfREGumLwYirb5j28auSohMAw0zIM8Sg,1654
|
1386
1385
|
homeassistant-stubs/components/intent/const.pyi,sha256=3O_gvS76ZKuzViWqM8923WbKQEZ9umuZYPeJryQTmco,69
|
1387
1386
|
homeassistant-stubs/components/intent/timers.pyi,sha256=X5ybqSvXghuMKeilq4dJSbjRtD-1KvOB8kQhr69hWWM,5432
|
1388
|
-
homeassistant-stubs/components/intent_script/__init__.pyi,sha256=
|
1387
|
+
homeassistant-stubs/components/intent_script/__init__.pyi,sha256=UGPQYEHhCrXXerB0AozWJWJ5J3o7q8XNJCSyNb3tPns,1721
|
1389
1388
|
homeassistant-stubs/components/ios/__init__.pyi,sha256=4DctBF7aMek5_wmdZmEinOz2Otu9sJB9sSRhNj_kU98,4432
|
1390
1389
|
homeassistant-stubs/components/ios/config_flow.pyi,sha256=jUK7pTnZEh4RzwgIFMwLJk_g6tdTenHbW5iY_cmzed8,109
|
1391
1390
|
homeassistant-stubs/components/ios/const.pyi,sha256=_FGzxCxI1A0E5PxIxsGIiiWqZoOe5fq2_sKT8sOn354,307
|
@@ -1440,11 +1439,11 @@ homeassistant-stubs/components/jellyfin/media_player.pyi,sha256=DKbcSgi2x_BPNrlR
|
|
1440
1439
|
homeassistant-stubs/components/jellyfin/media_source.pyi,sha256=wOc9NfqxjsHNThreo41--IkNrj3yGKQynV33s1DdbxQ,4332
|
1441
1440
|
homeassistant-stubs/components/jellyfin/models.pyi,sha256=AK8n3ICMpx71vkKxoMRvzkH6SkO9bvdtmHcbfVKMvfM,431
|
1442
1441
|
homeassistant-stubs/components/jellyfin/sensor.pyi,sha256=16e5UcqdK3sWCuh7RemQch8BTCyc64Zl5eOrcfOPRIU,1630
|
1443
|
-
homeassistant-stubs/components/jewish_calendar/__init__.pyi,sha256=
|
1444
|
-
homeassistant-stubs/components/jewish_calendar/binary_sensor.pyi,sha256=
|
1442
|
+
homeassistant-stubs/components/jewish_calendar/__init__.pyi,sha256=2vWPgEgHDgoXInqFJFonmK6H6a6KzvvkVTlx15cUZtY,1849
|
1443
|
+
homeassistant-stubs/components/jewish_calendar/binary_sensor.pyi,sha256=sznN6pu9E73VVpuTSNraBIkOxcrZm0KOfcubotql4TQ,2769
|
1445
1444
|
homeassistant-stubs/components/jewish_calendar/config_flow.pyi,sha256=NBElTbv2bk158jJbNUHKVeDuBdAnrFOMzUsQnFZ0jEc,1981
|
1446
1445
|
homeassistant-stubs/components/jewish_calendar/const.pyi,sha256=dH_LaLb-tVwWfIQ0xI5NpEKvHHjg56GFEN2dyzpjHc0,222
|
1447
|
-
homeassistant-stubs/components/jewish_calendar/sensor.pyi,sha256=
|
1446
|
+
homeassistant-stubs/components/jewish_calendar/sensor.pyi,sha256=Xon8CPvekEBLCMRt4Fh6stmyndX_ysBZ0aG7l2qRAjE,2174
|
1448
1447
|
homeassistant-stubs/components/jvc_projector/__init__.pyi,sha256=_LCfIHa7pMk10_9HpM37bJqCTT3IGJre-3OU1OMMjzo,815
|
1449
1448
|
homeassistant-stubs/components/jvc_projector/binary_sensor.pyi,sha256=7b-DFeQN81zJvyWm4taqRmgv-fhw0EomcUpGr4Q1Srg,935
|
1450
1449
|
homeassistant-stubs/components/jvc_projector/config_flow.pyi,sha256=c3NpnCzNZ6LP3QfnGmKNVJOxRlFcZavFkkeuPZ2bSKU,1041
|
@@ -2730,7 +2729,7 @@ homeassistant-stubs/components/systemmonitor/diagnostics.pyi,sha256=3tOFv8ZXiIcv
|
|
2730
2729
|
homeassistant-stubs/components/systemmonitor/repairs.pyi,sha256=TGxQR3xujHlcp6gXfZ4BRvsXz3_rrzw07K9PKH4V5U8,884
|
2731
2730
|
homeassistant-stubs/components/systemmonitor/sensor.pyi,sha256=egACKcKIwiiIUVVbSqwQmkRem4POn5ba6eayirwqE3o,4703
|
2732
2731
|
homeassistant-stubs/components/systemmonitor/util.pyi,sha256=tJIGD7TT7BqPVYhoGQrbYHMKco9nrnUzT1l_5fLKZIo,655
|
2733
|
-
homeassistant-stubs/components/tag/__init__.pyi,sha256=
|
2732
|
+
homeassistant-stubs/components/tag/__init__.pyi,sha256=a9M2V0cGFj2Iq-QVn42cmnOHbVxoUlgB5D9Ju-nnOx8,3761
|
2734
2733
|
homeassistant-stubs/components/tag/const.pyi,sha256=49NoQDGRwRhwzeE6qELOC1Mgq6PniZKfBsbLNQ9EM9I,133
|
2735
2734
|
homeassistant-stubs/components/tag/trigger.pyi,sha256=Qc6KBk5exjqWqYLdXahuNtOk6yVQOM_I5STpXfQz3ac,696
|
2736
2735
|
homeassistant-stubs/components/tailscale/__init__.pyi,sha256=1GacvcYbzVUJgerHKhnWEXIK5D-itQcYi-5P6djVYe8,1269
|
@@ -3288,7 +3287,7 @@ homeassistant-stubs/helpers/config_validation.pyi,sha256=wGjBTjdf_wsSurBhcSGhmcg
|
|
3288
3287
|
homeassistant-stubs/helpers/data_entry_flow.pyi,sha256=M_av1zXGh-dvUQpH1uUc7Dz1Jqc7xHEbXqJlVo_6ujw,1423
|
3289
3288
|
homeassistant-stubs/helpers/debounce.pyi,sha256=TvicXV_qkSOEafZh6d27iusSB9LAOYFNkVMoFcfyxnQ,1230
|
3290
3289
|
homeassistant-stubs/helpers/deprecation.pyi,sha256=wX4i61ch-5SS8IeLslCNtT2AP3UZ21tz916JD7w6Y9o,1570
|
3291
|
-
homeassistant-stubs/helpers/device_registry.pyi,sha256=
|
3290
|
+
homeassistant-stubs/helpers/device_registry.pyi,sha256=fdX1c_e1VATJ13-SjqIU1daceyKemkWi1GtShZsA5cs,11274
|
3292
3291
|
homeassistant-stubs/helpers/discovery.pyi,sha256=eIBD0gxHqY58PANQgLsPSQGkPM98uW17mmur1k3jAps,1742
|
3293
3292
|
homeassistant-stubs/helpers/discovery_flow.pyi,sha256=0hlkMylFX5XweVFfUQNqMVkl0mY4numJdSWiFJyIS7k,1428
|
3294
3293
|
homeassistant-stubs/helpers/dispatcher.pyi,sha256=-CFUiQu9mlswAoCLPGn6PWguJzsWjHU_2ah0gA1ET1o,2322
|
@@ -3312,7 +3311,7 @@ homeassistant-stubs/helpers/intent.pyi,sha256=0BzG3LFc_yNkA9hRRKv8w4NGFJpzldSUCu
|
|
3312
3311
|
homeassistant-stubs/helpers/issue_registry.pyi,sha256=-nFO9SpW-rNL8DusXkjktFMFpN2PwdQpGPBQM36ecDo,4115
|
3313
3312
|
homeassistant-stubs/helpers/json.pyi,sha256=tCdDyP3NYTF3Jb6cASWYnepzie6YLlD0ikMPW7wevKQ,1452
|
3314
3313
|
homeassistant-stubs/helpers/label_registry.pyi,sha256=fDg71PDb5lXKPPZZ0c85retuA53X_YWvkdNlHW1tVI8,2846
|
3315
|
-
homeassistant-stubs/helpers/llm.pyi,sha256=
|
3314
|
+
homeassistant-stubs/helpers/llm.pyi,sha256=HhVKDdDAS_1XSsLDjWP5G9mweNYtHB6m8kjbo59ue4g,3755
|
3316
3315
|
homeassistant-stubs/helpers/location.pyi,sha256=ynZlBZv3LuyphX4B28y2n2V4IHtJ6ETkUnqOlSYM1FM,655
|
3317
3316
|
homeassistant-stubs/helpers/network.pyi,sha256=34Qq5-Y8aevzqp_21b7L2Woqn-8dOunSTm7uML0_ty0,1773
|
3318
3317
|
homeassistant-stubs/helpers/normalized_name_base_registry.pyi,sha256=LoqQgtUt36e2EvYZisNHOydbZWGIRRSsuGNA01agMVg,704
|
@@ -3398,7 +3397,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3398
3397
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3399
3398
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=RTT2312P0TB9bA-rj3xdQK_J6sqVQE4LBJozgLH3oao,4621
|
3400
3399
|
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.
|
3400
|
+
homeassistant_stubs-2024.6.0b4.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
3401
|
+
homeassistant_stubs-2024.6.0b4.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3402
|
+
homeassistant_stubs-2024.6.0b4.dist-info/METADATA,sha256=WQLWPoH52ggzjvVLsKCbYaI5x1eO66KVszRPhnJCd8M,3015
|
3403
|
+
homeassistant_stubs-2024.6.0b4.dist-info/RECORD,,
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import pysnmp.hlapi.asyncio as hlapi
|
2
|
-
from .const import SNMP_ENGINE as SNMP_ENGINE
|
3
|
-
from _typeshed import Incomplete
|
4
|
-
from homeassistant.const import EVENT_HOMEASSISTANT_STOP as EVENT_HOMEASSISTANT_STOP
|
5
|
-
from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant, callback as callback
|
6
|
-
from homeassistant.helpers import singleton as singleton
|
7
|
-
|
8
|
-
_LOGGER: Incomplete
|
9
|
-
|
10
|
-
def get_snmp_engine(hass: HomeAssistant) -> hlapi.SnmpEngine: ...
|
{homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b4.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|