homeassistant-stubs 2025.1.0b0__py3-none-any.whl → 2025.1.0b2__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/apsystems/number.pyi +1 -0
- homeassistant-stubs/components/cloud/__init__.pyi +1 -1
- homeassistant-stubs/components/modbus/__init__.pyi +5 -3
- homeassistant-stubs/components/modbus/modbus.pyi +0 -1
- homeassistant-stubs/components/peblar/coordinator.pyi +1 -2
- homeassistant-stubs/components/recorder/__init__.pyi +1 -1
- {homeassistant_stubs-2025.1.0b0.dist-info → homeassistant_stubs-2025.1.0b2.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.1.0b0.dist-info → homeassistant_stubs-2025.1.0b2.dist-info}/RECORD +10 -10
- {homeassistant_stubs-2025.1.0b0.dist-info → homeassistant_stubs-2025.1.0b2.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.1.0b0.dist-info → homeassistant_stubs-2025.1.0b2.dist-info}/licenses/LICENSE +0 -0
@@ -20,6 +20,7 @@ class ApSystemsMaxOutputNumber(ApSystemsEntity, NumberEntity):
|
|
20
20
|
_attr_native_max_value: Incomplete
|
21
21
|
_attr_native_min_value: Incomplete
|
22
22
|
def __init__(self, data: ApSystemsData) -> None: ...
|
23
|
+
_attr_available: bool
|
23
24
|
_attr_native_value: Incomplete
|
24
25
|
async def async_update(self) -> None: ...
|
25
26
|
async def async_set_native_value(self, value: float) -> None: ...
|
@@ -1,4 +1,4 @@
|
|
1
|
-
from . import account_link as account_link, http_api as http_api
|
1
|
+
from . import account_link as account_link, backup as backup, http_api as http_api
|
2
2
|
from .client import CloudClient as CloudClient
|
3
3
|
from .const import CONF_ACCOUNTS_SERVER as CONF_ACCOUNTS_SERVER, CONF_ACCOUNT_LINK_SERVER as CONF_ACCOUNT_LINK_SERVER, CONF_ACME_SERVER as CONF_ACME_SERVER, CONF_ALEXA as CONF_ALEXA, CONF_ALEXA_SERVER as CONF_ALEXA_SERVER, CONF_ALIASES as CONF_ALIASES, CONF_CLOUDHOOK_SERVER as CONF_CLOUDHOOK_SERVER, CONF_COGNITO_CLIENT_ID as CONF_COGNITO_CLIENT_ID, CONF_ENTITY_CONFIG as CONF_ENTITY_CONFIG, CONF_FILTER as CONF_FILTER, CONF_GOOGLE_ACTIONS as CONF_GOOGLE_ACTIONS, CONF_RELAYER_SERVER as CONF_RELAYER_SERVER, CONF_REMOTESTATE_SERVER as CONF_REMOTESTATE_SERVER, CONF_SERVICEHANDLERS_SERVER as CONF_SERVICEHANDLERS_SERVER, CONF_THINGTALK_SERVER as CONF_THINGTALK_SERVER, CONF_USER_POOL_ID as CONF_USER_POOL_ID, DATA_CLOUD as DATA_CLOUD, DATA_PLATFORMS_SETUP as DATA_PLATFORMS_SETUP, DOMAIN as DOMAIN, MODE_DEV as MODE_DEV, MODE_PROD as MODE_PROD
|
4
4
|
from .prefs import CloudPreferences as CloudPreferences
|
@@ -3,8 +3,11 @@ from .modbus import ModbusHub as ModbusHub, async_modbus_setup as async_modbus_s
|
|
3
3
|
from .validators import duplicate_fan_mode_validator as duplicate_fan_mode_validator, duplicate_swing_mode_validator as duplicate_swing_mode_validator, hvac_fixedsize_reglist_validator as hvac_fixedsize_reglist_validator, nan_validator as nan_validator, register_int_list_validator as register_int_list_validator, struct_validator as struct_validator
|
4
4
|
from _typeshed import Incomplete
|
5
5
|
from homeassistant.components.sensor import CONF_STATE_CLASS as CONF_STATE_CLASS
|
6
|
-
from homeassistant.const import CONF_ADDRESS as CONF_ADDRESS, CONF_BINARY_SENSORS as CONF_BINARY_SENSORS, CONF_COMMAND_OFF as CONF_COMMAND_OFF, CONF_COMMAND_ON as CONF_COMMAND_ON, CONF_COUNT as CONF_COUNT, CONF_COVERS as CONF_COVERS, CONF_DELAY as CONF_DELAY, CONF_DEVICE_CLASS as CONF_DEVICE_CLASS, CONF_HOST as CONF_HOST, CONF_LIGHTS as CONF_LIGHTS, CONF_METHOD as CONF_METHOD, CONF_NAME as CONF_NAME, CONF_OFFSET as CONF_OFFSET, CONF_PORT as CONF_PORT, CONF_SCAN_INTERVAL as CONF_SCAN_INTERVAL, CONF_SENSORS as CONF_SENSORS, CONF_SLAVE as CONF_SLAVE, CONF_STRUCTURE as CONF_STRUCTURE, CONF_SWITCHES as CONF_SWITCHES, CONF_TEMPERATURE_UNIT as CONF_TEMPERATURE_UNIT, CONF_TIMEOUT as CONF_TIMEOUT, CONF_TYPE as CONF_TYPE, CONF_UNIQUE_ID as CONF_UNIQUE_ID, CONF_UNIT_OF_MEASUREMENT as CONF_UNIT_OF_MEASUREMENT
|
7
|
-
from homeassistant.core import HomeAssistant as HomeAssistant
|
6
|
+
from homeassistant.const import CONF_ADDRESS as CONF_ADDRESS, CONF_BINARY_SENSORS as CONF_BINARY_SENSORS, CONF_COMMAND_OFF as CONF_COMMAND_OFF, CONF_COMMAND_ON as CONF_COMMAND_ON, CONF_COUNT as CONF_COUNT, CONF_COVERS as CONF_COVERS, CONF_DELAY as CONF_DELAY, CONF_DEVICE_CLASS as CONF_DEVICE_CLASS, CONF_HOST as CONF_HOST, CONF_LIGHTS as CONF_LIGHTS, CONF_METHOD as CONF_METHOD, CONF_NAME as CONF_NAME, CONF_OFFSET as CONF_OFFSET, CONF_PORT as CONF_PORT, CONF_SCAN_INTERVAL as CONF_SCAN_INTERVAL, CONF_SENSORS as CONF_SENSORS, CONF_SLAVE as CONF_SLAVE, CONF_STRUCTURE as CONF_STRUCTURE, CONF_SWITCHES as CONF_SWITCHES, CONF_TEMPERATURE_UNIT as CONF_TEMPERATURE_UNIT, CONF_TIMEOUT as CONF_TIMEOUT, CONF_TYPE as CONF_TYPE, CONF_UNIQUE_ID as CONF_UNIQUE_ID, CONF_UNIT_OF_MEASUREMENT as CONF_UNIT_OF_MEASUREMENT, SERVICE_RELOAD as SERVICE_RELOAD
|
7
|
+
from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant, ServiceCall as ServiceCall
|
8
|
+
from homeassistant.helpers.entity_platform import async_get_platforms as async_get_platforms
|
9
|
+
from homeassistant.helpers.reload import async_integration_yaml_config as async_integration_yaml_config
|
10
|
+
from homeassistant.helpers.service import async_register_admin_service as async_register_admin_service
|
8
11
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
9
12
|
|
10
13
|
_LOGGER: Incomplete
|
@@ -26,4 +29,3 @@ CONFIG_SCHEMA: Incomplete
|
|
26
29
|
|
27
30
|
def get_hub(hass: HomeAssistant, name: str) -> ModbusHub: ...
|
28
31
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
29
|
-
async def async_reset_platform(hass: HomeAssistant, integration_name: str) -> None: ...
|
@@ -7,7 +7,6 @@ from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant, S
|
|
7
7
|
from homeassistant.helpers.discovery import async_load_platform as async_load_platform
|
8
8
|
from homeassistant.helpers.dispatcher import async_dispatcher_send as async_dispatcher_send
|
9
9
|
from homeassistant.helpers.event import async_call_later as async_call_later
|
10
|
-
from homeassistant.helpers.reload import async_setup_reload_service as async_setup_reload_service
|
11
10
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
12
11
|
from pymodbus.pdu import ModbusPDU as ModbusPDU
|
13
12
|
from typing import Any, NamedTuple
|
@@ -6,8 +6,7 @@ from homeassistant.config_entries import ConfigEntry as ConfigEntry, ConfigEntry
|
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
7
7
|
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed
|
8
8
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
|
9
|
-
from peblar import Peblar as Peblar, PeblarApi as PeblarApi, PeblarEVInterface as PeblarEVInterface, PeblarMeter as PeblarMeter, PeblarSystem as PeblarSystem, PeblarUserConfiguration, PeblarVersions as PeblarVersions
|
10
|
-
from tests.components.peblar.conftest import PeblarSystemInformation as PeblarSystemInformation
|
9
|
+
from peblar import Peblar as Peblar, PeblarApi as PeblarApi, PeblarEVInterface as PeblarEVInterface, PeblarMeter as PeblarMeter, PeblarSystem as PeblarSystem, PeblarSystemInformation as PeblarSystemInformation, PeblarUserConfiguration, PeblarVersions as PeblarVersions
|
11
10
|
from typing import Any, Concatenate
|
12
11
|
|
13
12
|
@dataclass(kw_only=True)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
from . import entity_registry as entity_registry, websocket_api as websocket_api
|
1
|
+
from . import backup as backup, entity_registry as entity_registry, websocket_api as websocket_api
|
2
2
|
from .const import CONF_DB_INTEGRITY_CHECK as CONF_DB_INTEGRITY_CHECK, DOMAIN as DOMAIN, INTEGRATION_PLATFORM_COMPILE_STATISTICS as INTEGRATION_PLATFORM_COMPILE_STATISTICS, INTEGRATION_PLATFORM_METHODS as INTEGRATION_PLATFORM_METHODS, SQLITE_URL_PREFIX as SQLITE_URL_PREFIX, SupportedDialect as SupportedDialect
|
3
3
|
from .core import Recorder as Recorder
|
4
4
|
from .services import async_register_services as async_register_services
|
{homeassistant_stubs-2025.1.0b0.dist-info → homeassistant_stubs-2025.1.0b2.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.1.
|
3
|
+
Version: 2025.1.0b2
|
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==2025.1.
|
21
|
+
Requires-Dist: homeassistant==2025.1.0b2
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.1.0b0.dist-info → homeassistant_stubs-2025.1.0b2.dist-info}/RECORD
RENAMED
@@ -317,7 +317,7 @@ homeassistant-stubs/components/apsystems/config_flow.pyi,sha256=r09ePiWRFVvyKH_W
|
|
317
317
|
homeassistant-stubs/components/apsystems/const.pyi,sha256=1BkhPQNy0RI_iBcwjQ6VjgpUWug5eiGTHdx3rroMg9o,73
|
318
318
|
homeassistant-stubs/components/apsystems/coordinator.pyi,sha256=BRsu7Wye97agknd3XUpsTLys4n6PnZnKCkb4wja-u6E,896
|
319
319
|
homeassistant-stubs/components/apsystems/entity.pyi,sha256=Z1RGkCTNuDrE8yE-WgVO6Zdk1jf-cr-hby4yVNFlT8E,402
|
320
|
-
homeassistant-stubs/components/apsystems/number.pyi,sha256=
|
320
|
+
homeassistant-stubs/components/apsystems/number.pyi,sha256=kIJpxw4Kph3YoNZaC2c24dGVg41eE-Liq0UWhqvl340,1393
|
321
321
|
homeassistant-stubs/components/apsystems/sensor.pyi,sha256=lIII71WOwcrjC20Kf-VwWLSnA5JvYTGad4pJXK2BJ38,2306
|
322
322
|
homeassistant-stubs/components/apsystems/switch.pyi,sha256=1SNS-dT5-XOp6x1mc_sRL1EsOasUYoLY62Hx9g8lz-A,1068
|
323
323
|
homeassistant-stubs/components/aqualogic/__init__.pyi,sha256=p7-uXKU0s5XG6NzT66TwEtoNEZ1IDcvZGtTeWtRS6qw,1180
|
@@ -602,7 +602,7 @@ homeassistant-stubs/components/climate/device_trigger.pyi,sha256=mAGFpGWtfsRwBwK
|
|
602
602
|
homeassistant-stubs/components/climate/intent.pyi,sha256=3m6VGh8fOvqSOamp3Mebdb7anNDO4stVyv86pcflDEM,549
|
603
603
|
homeassistant-stubs/components/climate/reproduce_state.pyi,sha256=bkg4fjY3WMLXDbO9mg9fvd3IBoWylMGaShXAP3-6noc,1322
|
604
604
|
homeassistant-stubs/components/climate/significant_change.pyi,sha256=LDAKZ2zrYSwn_eik1rPJz0nVUNpPsOWFPGjSi8s7bEA,1023
|
605
|
-
homeassistant-stubs/components/cloud/__init__.pyi,sha256=
|
605
|
+
homeassistant-stubs/components/cloud/__init__.pyi,sha256=ikwvzdSNPeT7Pf2WQ1a2aL6eAghGCWS3TW2Jo5gmLPE,4383
|
606
606
|
homeassistant-stubs/components/cloud/account_link.pyi,sha256=CjKDU-9Krww4TVUmB3eUjK3LDvX9PoSd_k-lDJMMT24,1212
|
607
607
|
homeassistant-stubs/components/cloud/alexa_config.pyi,sha256=K9_ySGvEA-6f-c59eK0YZxyyFJg18-4blacuwhPqd4I,3820
|
608
608
|
homeassistant-stubs/components/cloud/assist_pipeline.pyi,sha256=-i_09_tGhZry1B728DoOAJbT2WDBBxbW8WauD_jFKnU,845
|
@@ -2016,7 +2016,7 @@ homeassistant-stubs/components/mjpeg/camera.pyi,sha256=2lQg_1hFC3YYJQpzkHCVp5KzA
|
|
2016
2016
|
homeassistant-stubs/components/mjpeg/config_flow.pyi,sha256=eNhYwwhJMVew6-YT2DCYks1m6cbQrNnRM6Q_im32FNw,1681
|
2017
2017
|
homeassistant-stubs/components/mjpeg/const.pyi,sha256=YvpMQFpeOnsOkWtwbb5r9jKhMu6BzBNCN6WHFbGsxeY,239
|
2018
2018
|
homeassistant-stubs/components/mjpeg/util.pyi,sha256=LksjepjHAYEkGQWJh-ln4oI6oVuGr5owU0HhvRtuOsg,163
|
2019
|
-
homeassistant-stubs/components/modbus/__init__.pyi,sha256=
|
2019
|
+
homeassistant-stubs/components/modbus/__init__.pyi,sha256=ihbb_BnyQc__Wd9EaYzDmaJppT_OgjhCYnUrjdwq6jM,5721
|
2020
2020
|
homeassistant-stubs/components/modbus/binary_sensor.pyi,sha256=okH_06zNctK046evtMtywtPWrWoau1xQtLFDBjPXMdw,2512
|
2021
2021
|
homeassistant-stubs/components/modbus/climate.pyi,sha256=8hyt3Qn9F9zUjSDjXSVoILTzw8h_BFJZJ7sl175TitQ,5310
|
2022
2022
|
homeassistant-stubs/components/modbus/const.pyi,sha256=acVaa4E3o-p0BXfc4Ea0Cbpiqwn3rgnVxULK6ViIO4I,2893
|
@@ -2024,7 +2024,7 @@ homeassistant-stubs/components/modbus/cover.pyi,sha256=b9pgmTOFqEtkrZK0R7hodwuKN
|
|
2024
2024
|
homeassistant-stubs/components/modbus/entity.pyi,sha256=3OGsNuPo72-15jWJ5fmsZ31PiOgSRWyn8zrfKb-I-b8,4775
|
2025
2025
|
homeassistant-stubs/components/modbus/fan.pyi,sha256=f7W9472QXXs97DvsPhZQTHJhIra85kRkfGT9nicdImY,1120
|
2026
2026
|
homeassistant-stubs/components/modbus/light.pyi,sha256=q9cS9rgMIf3LP2t2ms4csYoyLjx73BBGAu60wsiXhX8,998
|
2027
|
-
homeassistant-stubs/components/modbus/modbus.pyi,sha256=
|
2027
|
+
homeassistant-stubs/components/modbus/modbus.pyi,sha256=aWDfCfeaS6K5Xv57XUn_1sqRbuhZTOF_kynGd5pJUWk,3237
|
2028
2028
|
homeassistant-stubs/components/modbus/sensor.pyi,sha256=UZaTtvnceQm-dAemUnximwIGfV1UAEgV2CqsnXzwJss,2628
|
2029
2029
|
homeassistant-stubs/components/modbus/switch.pyi,sha256=bdLuvq8T6Vu5GHv0xl6bUbkj3a6fGbE2Uglfo_HQcGA,873
|
2030
2030
|
homeassistant-stubs/components/modbus/validators.pyi,sha256=WT-IHI5LD35y8AT6kY7D5-lyx29dNJKmHKiiy-BW1Gg,2305
|
@@ -2408,7 +2408,7 @@ homeassistant-stubs/components/peblar/binary_sensor.pyi,sha256=aQT8Qb_I5LqNlLHEn
|
|
2408
2408
|
homeassistant-stubs/components/peblar/button.pyi,sha256=Ekb6YTjQ4S4oA_Trk2KmnAIfDVo4P7-H1oObYD5u3L8,1683
|
2409
2409
|
homeassistant-stubs/components/peblar/config_flow.pyi,sha256=lv2fJ6HkigihWAHIPt_AcvOe_JWcovnyUA3u5Tnhnxw,1351
|
2410
2410
|
homeassistant-stubs/components/peblar/const.pyi,sha256=63vymap3_V7H2EpTyHzo4k7rz9y0bD84g58lPTAnc_k,195
|
2411
|
-
homeassistant-stubs/components/peblar/coordinator.pyi,sha256
|
2411
|
+
homeassistant-stubs/components/peblar/coordinator.pyi,sha256=-wuTzBdGTTnwG2LKbufU_XiJZpUhtxgraQluiO1hMNg,2885
|
2412
2412
|
homeassistant-stubs/components/peblar/diagnostics.pyi,sha256=f5pYHjhOtoQUCKrjYZS5RPR0WCu7JadMe9QeK-hjViY,265
|
2413
2413
|
homeassistant-stubs/components/peblar/entity.pyi,sha256=BhKyWvgA3f_c9O3FfvPHzY4dWn5c4GYJQuJk1lfCTxU,892
|
2414
2414
|
homeassistant-stubs/components/peblar/helpers.pyi,sha256=MVgPVjqRil0WgzFgGxje7-FxXyatOz74-CFFnPnP8nI,477
|
@@ -2584,7 +2584,7 @@ homeassistant-stubs/components/recollect_waste/diagnostics.pyi,sha256=x4V3I3WW-B
|
|
2584
2584
|
homeassistant-stubs/components/recollect_waste/entity.pyi,sha256=dDygTgDLpKqP90LwhIqWGKl4OtMoWdFTcMXebksNLfU,916
|
2585
2585
|
homeassistant-stubs/components/recollect_waste/sensor.pyi,sha256=Op_BBbGLvvRBDATxcVneApXBmsaLh-kXZ3qYKziEE4M,1542
|
2586
2586
|
homeassistant-stubs/components/recollect_waste/util.pyi,sha256=dkbQSgcqtp0HYr16J7GgJRPm-vW_21AHpYpBTbpiomI,353
|
2587
|
-
homeassistant-stubs/components/recorder/__init__.pyi,sha256=
|
2587
|
+
homeassistant-stubs/components/recorder/__init__.pyi,sha256=3VvUnaZtmy1Ebx_n646SKfun7aA6HzCwWnzVTZqkO_s,2497
|
2588
2588
|
homeassistant-stubs/components/recorder/backup.pyi,sha256=GsFwE8bwZazWZW7vHY7-9f4cwr6R1tPDGdjYA382Wmk,425
|
2589
2589
|
homeassistant-stubs/components/recorder/basic_websocket_api.pyi,sha256=PYHwQWF0vU1phTZaCXawTsK9WqyjYqM2FCkCQjnyH0M,384
|
2590
2590
|
homeassistant-stubs/components/recorder/const.pyi,sha256=RymPWZ1aFzpRbQqS_FvVO6iBjaY-bJGMua_xQ5qIT6c,1499
|
@@ -3881,7 +3881,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3881
3881
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3882
3882
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=FpRpxb-ZvfthDdO6Js0JqWtzlQfKDPP7nY5yOXp3604,3917
|
3883
3883
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3884
|
-
homeassistant_stubs-2025.1.
|
3885
|
-
homeassistant_stubs-2025.1.
|
3886
|
-
homeassistant_stubs-2025.1.
|
3887
|
-
homeassistant_stubs-2025.1.
|
3884
|
+
homeassistant_stubs-2025.1.0b2.dist-info/METADATA,sha256=e_UmhalBoAbVdBm9MJXZVmHdWYcpX5JPY-Fryb-9NSs,2956
|
3885
|
+
homeassistant_stubs-2025.1.0b2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
3886
|
+
homeassistant_stubs-2025.1.0b2.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3887
|
+
homeassistant_stubs-2025.1.0b2.dist-info/RECORD,,
|
File without changes
|
File without changes
|