homeassistant-stubs 2023.9.0b6__py3-none-any.whl → 2023.9.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/components/alexa/errors.pyi +4 -0
- homeassistant-stubs/components/alexa/handlers.pyi +1 -1
- homeassistant-stubs/helpers/event.pyi +2 -2
- {homeassistant_stubs-2023.9.0b6.dist-info → homeassistant_stubs-2023.9.1.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2023.9.0b6.dist-info → homeassistant_stubs-2023.9.1.dist-info}/RECORD +7 -7
- {homeassistant_stubs-2023.9.0b6.dist-info → homeassistant_stubs-2023.9.1.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2023.9.0b6.dist-info → homeassistant_stubs-2023.9.1.dist-info}/WHEEL +0 -0
@@ -39,6 +39,10 @@ class AlexaUnsupportedThermostatModeError(AlexaError):
|
|
39
39
|
namespace: str
|
40
40
|
error_type: str
|
41
41
|
|
42
|
+
class AlexaUnsupportedThermostatTargetStateError(AlexaError):
|
43
|
+
namespace: str
|
44
|
+
error_type: str
|
45
|
+
|
42
46
|
class AlexaTempRangeError(AlexaError):
|
43
47
|
namespace: str
|
44
48
|
error_type: str
|
@@ -1,7 +1,7 @@
|
|
1
1
|
from .config import AbstractConfig as AbstractConfig
|
2
2
|
from .const import API_TEMP_UNITS as API_TEMP_UNITS, API_THERMOSTAT_MODES as API_THERMOSTAT_MODES, API_THERMOSTAT_MODES_CUSTOM as API_THERMOSTAT_MODES_CUSTOM, API_THERMOSTAT_PRESETS as API_THERMOSTAT_PRESETS, Cause as Cause, DATE_FORMAT as DATE_FORMAT, Inputs as Inputs, PRESET_MODE_NA as PRESET_MODE_NA
|
3
3
|
from .entities import async_get_entities as async_get_entities
|
4
|
-
from .errors import AlexaInvalidDirectiveError as AlexaInvalidDirectiveError, AlexaInvalidValueError as AlexaInvalidValueError, AlexaSecurityPanelAuthorizationRequired as AlexaSecurityPanelAuthorizationRequired, AlexaTempRangeError as AlexaTempRangeError, AlexaUnsupportedThermostatModeError as AlexaUnsupportedThermostatModeError, AlexaVideoActionNotPermittedForContentError as AlexaVideoActionNotPermittedForContentError
|
4
|
+
from .errors import AlexaInvalidDirectiveError as AlexaInvalidDirectiveError, AlexaInvalidValueError as AlexaInvalidValueError, AlexaSecurityPanelAuthorizationRequired as AlexaSecurityPanelAuthorizationRequired, AlexaTempRangeError as AlexaTempRangeError, AlexaUnsupportedThermostatModeError as AlexaUnsupportedThermostatModeError, AlexaUnsupportedThermostatTargetStateError as AlexaUnsupportedThermostatTargetStateError, AlexaVideoActionNotPermittedForContentError as AlexaVideoActionNotPermittedForContentError
|
5
5
|
from .state_report import AlexaDirective as AlexaDirective, AlexaResponse as AlexaResponse, async_enable_proactive_mode as async_enable_proactive_mode
|
6
6
|
from _typeshed import Incomplete
|
7
7
|
from collections.abc import Callable as Callable, Coroutine
|
@@ -118,7 +118,7 @@ class TrackTemplateResultInfo:
|
|
118
118
|
_time_listeners: Incomplete
|
119
119
|
def __init__(self, hass: HomeAssistant, track_templates: Sequence[TrackTemplate], action: TrackTemplateResultListener, has_super_template: bool = ...) -> None: ...
|
120
120
|
def __repr__(self) -> str: ...
|
121
|
-
def async_setup(self,
|
121
|
+
def async_setup(self, strict: bool = ..., log_fn: Callable[[int, str], None] | None = ...) -> None: ...
|
122
122
|
@property
|
123
123
|
def listeners(self) -> dict[str, bool | set[str]]: ...
|
124
124
|
def _setup_time_listener(self, template: Template, has_time: bool) -> None: ...
|
@@ -132,7 +132,7 @@ class TrackTemplateResultInfo:
|
|
132
132
|
|
133
133
|
TrackTemplateResultListener: Incomplete
|
134
134
|
|
135
|
-
def async_track_template_result(hass: HomeAssistant, track_templates: Sequence[TrackTemplate], action: TrackTemplateResultListener,
|
135
|
+
def async_track_template_result(hass: HomeAssistant, track_templates: Sequence[TrackTemplate], action: TrackTemplateResultListener, strict: bool = ..., log_fn: Callable[[int, str], None] | None = ..., has_super_template: bool = ...) -> TrackTemplateResultInfo: ...
|
136
136
|
def async_track_same_state(hass: HomeAssistant, period: timedelta, action: Callable[[], Coroutine[Any, Any, None] | None], async_check_same_func: Callable[[str, State | None, State | None], bool], entity_ids: str | Iterable[str] = ...) -> CALLBACK_TYPE: ...
|
137
137
|
|
138
138
|
track_same_state: Incomplete
|
{homeassistant_stubs-2023.9.0b6.dist-info → homeassistant_stubs-2023.9.1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2023.9.
|
3
|
+
Version: 2023.9.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
|
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.10
|
18
18
|
Classifier: Topic :: Software Development
|
19
19
|
Classifier: Typing :: Typed
|
20
|
-
Requires-Dist: homeassistant (==2023.9.
|
20
|
+
Requires-Dist: homeassistant (==2023.9.1)
|
21
21
|
Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
|
22
22
|
Project-URL: Repository, https://github.com/KapJI/homeassistant-stubs
|
23
23
|
Project-URL: Release Notes, https://github.com/KapJI/homeassistant-stubs/releases
|
@@ -116,9 +116,9 @@ homeassistant-stubs/components/alexa/capabilities.pyi,sha256=U4-7DEXcTt5mj7jWTl8
|
|
116
116
|
homeassistant-stubs/components/alexa/config.pyi,sha256=we0N7gGdYkg4GKmMaX5tYJO9may9K-2uTO08eBENDto,2066
|
117
117
|
homeassistant-stubs/components/alexa/const.pyi,sha256=MN_2MwV5FXf4DzV8xbaq29F7IjLKNfpJKRc-tvhJExo,1176
|
118
118
|
homeassistant-stubs/components/alexa/entities.pyi,sha256=hZ9bzHbGUOLVIj0e1rmVFyYqAdowPWuWM4BveY5zChY,8533
|
119
|
-
homeassistant-stubs/components/alexa/errors.pyi,sha256=
|
119
|
+
homeassistant-stubs/components/alexa/errors.pyi,sha256=j1Beulzv2zS6sXTK9oKo_Fa6UtE0zxEK2_qFR7WOIJs,2130
|
120
120
|
homeassistant-stubs/components/alexa/flash_briefings.pyi,sha256=3b3RoUJQ1Y5Z4MNPIwG3KclI8VQ19KzEeXaoRJomA5Q,1382
|
121
|
-
homeassistant-stubs/components/alexa/handlers.pyi,sha256=
|
121
|
+
homeassistant-stubs/components/alexa/handlers.pyi,sha256=3gzCYbR-A-26P6gArzQXPEgkVJVZ1lf8Y3WHY7pWa1A,9820
|
122
122
|
homeassistant-stubs/components/alexa/intent.pyi,sha256=Hh6Lmkj644qewepW3-qv7ZRgmDXvLU5LeBTcp4rDSbI,2060
|
123
123
|
homeassistant-stubs/components/alexa/logbook.pyi,sha256=K3P54gJl-KRGn7LgHdXCcNTk8Z-S2TRuOFVsweBKkBw,567
|
124
124
|
homeassistant-stubs/components/alexa/resources.pyi,sha256=B9k0HTOT1J8DviCM-gdREt1jXI-_EuXPvHZ10fdEaXc,3941
|
@@ -2416,7 +2416,7 @@ homeassistant-stubs/helpers/entity_platform.pyi,sha256=dA0aGe_zm0UylvKSllzFm4Z_d
|
|
2416
2416
|
homeassistant-stubs/helpers/entity_registry.pyi,sha256=oJf8i8uXqDvSrJ3DGdB3Jv8lAMwnukT5bIRYMzx_Lto,11918
|
2417
2417
|
homeassistant-stubs/helpers/entity_values.pyi,sha256=gZWrI8Z5Tqg-dSM0G_syDup40XslaMXfuui0Y0M4AB4,452
|
2418
2418
|
homeassistant-stubs/helpers/entityfilter.pyi,sha256=MNaeGTsuWfuk4hBWx42_GVZm8soKBm9qlF9BYHDqzPQ,2006
|
2419
|
-
homeassistant-stubs/helpers/event.pyi,sha256=
|
2419
|
+
homeassistant-stubs/helpers/event.pyi,sha256=sLLo7e0RRbFXR-Fo9iS--cG_CkPEdsj4-cAsc18STa4,13752
|
2420
2420
|
homeassistant-stubs/helpers/frame.pyi,sha256=-1a8W-rPka2F5I9a39NtS-u-sGbnWDST4Q4g1o1gZ10,773
|
2421
2421
|
homeassistant-stubs/helpers/httpx_client.pyi,sha256=FxPFJhS0rxN8F8ynR1bP6qiEovdk8cE1DoZD7ROkMW4,1366
|
2422
2422
|
homeassistant-stubs/helpers/icon.pyi,sha256=LDOcwKsNUmRC3Y5ehG5YStrksLOAVeu4xMFRQn0sjKU,164
|
@@ -2505,7 +2505,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=zxT5g702AE8bCbQd9UynrAwNF_MndI2e
|
|
2505
2505
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
2506
2506
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=LdOts7aNdgGBanbHeaHTA-FS2PuPe9ZfNfjWFYnSi6U,3167
|
2507
2507
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ob8lXxNfm75wO2xk-ihATXFzNxI7V9Q1h507lnyzmtE,272
|
2508
|
-
homeassistant_stubs-2023.9.
|
2509
|
-
homeassistant_stubs-2023.9.
|
2510
|
-
homeassistant_stubs-2023.9.
|
2511
|
-
homeassistant_stubs-2023.9.
|
2508
|
+
homeassistant_stubs-2023.9.1.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
2509
|
+
homeassistant_stubs-2023.9.1.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
2510
|
+
homeassistant_stubs-2023.9.1.dist-info/METADATA,sha256=Czf-FrzUq8hBk5uW7M9DaJr1SaOg-G_5DnsYVHPat_E,3061
|
2511
|
+
homeassistant_stubs-2023.9.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|