zwave-js-server-python 0.62.0__py3-none-any.whl → 0.63.0__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.
@@ -8,7 +8,7 @@ import logging
8
8
  from typing import TypedDict
9
9
 
10
10
  PACKAGE_NAME = "zwave-js-server-python"
11
- __version__ = "0.62.0"
11
+ __version__ = "0.63.0"
12
12
 
13
13
  # minimal server schema version we can handle
14
14
  MIN_SERVER_SCHEMA_VERSION = 39
@@ -52,10 +52,17 @@ LoggingEventModel = create_model_from_typeddict(
52
52
  )
53
53
 
54
54
 
55
+ class DriverReadyEventModel(BaseDriverEventModel):
56
+ """Model for `driver ready` event data."""
57
+
58
+ event: Literal["driver ready"]
59
+
60
+
55
61
  DRIVER_EVENT_MODEL_MAP: dict[str, type[BaseDriverEventModel]] = {
56
62
  "all nodes ready": AllNodesReadyEventModel,
57
63
  "log config updated": LogConfigUpdatedEventModel,
58
64
  "logging": LoggingEventModel,
65
+ "driver ready": DriverReadyEventModel,
59
66
  }
60
67
 
61
68
 
@@ -200,3 +207,6 @@ class Driver(EventBase):
200
207
 
201
208
  def handle_all_nodes_ready(self, event: Event) -> None:
202
209
  """Process a driver all nodes ready event."""
210
+
211
+ def handle_driver_ready(self, event: Event) -> None:
212
+ """Process a driver ready event."""
@@ -1,9 +1,9 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: zwave-js-server-python
3
- Version: 0.62.0
3
+ Version: 0.63.0
4
4
  Summary: Python wrapper for zwave-js-server
5
5
  Author-email: Home Assistant Team <hello@home-assistant.io>
6
- License: Apache-2.0
6
+ License-Expression: Apache-2.0
7
7
  Project-URL: Source Code, https://github.com/home-assistant-libs/zwave-js-server-python
8
8
  Project-URL: Bug Reports, https://github.com/home-assistant-libs/zwave-js-server-python/issues
9
9
  Keywords: home,automation,zwave,zwave-js
@@ -19,6 +19,7 @@ Description-Content-Type: text/markdown
19
19
  License-File: LICENSE
20
20
  Requires-Dist: aiohttp>3
21
21
  Requires-Dist: pydantic>=1.10.0
22
+ Dynamic: license-file
22
23
 
23
24
  # zwave-js-server-python
24
25
 
@@ -7,7 +7,7 @@ zwave_js_server/exceptions.py,sha256=8SY6FA8NiTEQgtauLR83F7m69gBGQviJ6O2obirH2po
7
7
  zwave_js_server/firmware.py,sha256=KXB_-MgBDlNg289bPibUeWtF4l8WtEq9jmiFFMYg1KM,2381
8
8
  zwave_js_server/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  zwave_js_server/version.py,sha256=PUwxOVcUMk5pOguQP9zAjiPjs1Nnmiwj3fcA4HJLiBg,401
10
- zwave_js_server/const/__init__.py,sha256=uiCPW51dCWsSW-s9krw7qmQEL7xnWMy_zpcD6eIjmCQ,14264
10
+ zwave_js_server/const/__init__.py,sha256=kPp5XmZNP68jnm3y4vruzdpH8Erdmy8KvDlBqItOMWg,14264
11
11
  zwave_js_server/const/command_class/__init__.py,sha256=WilOppnr9CXahDjEEkAXyh_j7iCq_qZ1GtBkjWLoQUg,37
12
12
  zwave_js_server/const/command_class/barrier_operator.py,sha256=IJ195hGKEi1FLLqKWMtC2ZhY9Jt5PACr7GYTyVPjkKM,820
13
13
  zwave_js_server/const/command_class/basic.py,sha256=cs0k7p5qxrwpR8-NvXQLtnfEsC6IlBAYiW79DaM_6Eg,96
@@ -33,7 +33,7 @@ zwave_js_server/model/association.py,sha256=4rpf8PbafCYCfNJGISAmnpfcvJZTo_jPDGm2
33
33
  zwave_js_server/model/command_class.py,sha256=SDTyGKlz5tDUoBb4RgKwPGwPuJvZ77a_q2EllN4bnzU,1394
34
34
  zwave_js_server/model/device_class.py,sha256=WTeYuR9PoIMzfjNhE21XIlHoTA9yDNEuRPkFS1W6nts,1609
35
35
  zwave_js_server/model/device_config.py,sha256=HpM-DchbhcyjhkDrp-6b8YaX2Qqo7KZbWk60xcMIhFY,6562
36
- zwave_js_server/model/driver.py,sha256=_dh6w5RUjHenyyQmIsuKJ97dlzjf-BWxgiDJ4Bvqx50,6873
36
+ zwave_js_server/model/driver.py,sha256=UfZAeJrqeLMwpKBq8wtmney6GkGxm0AruZogckW_y0Y,7154
37
37
  zwave_js_server/model/duration.py,sha256=OW2OqReexL6GXxxLs__i5Vs3JCVoODgLpwPHU48yynU,1153
38
38
  zwave_js_server/model/endpoint.py,sha256=V_OWg4PLwExOSdY4cAiY5IkiJ2FH5MHF3tKG8O0X1Lo,11911
39
39
  zwave_js_server/model/log_config.py,sha256=uF7gJlr2dSBP2mBMYzOyFiV_T45PwGU98AM5c7qs2g0,1574
@@ -66,9 +66,9 @@ zwave_js_server/util/command_class/__init__.py,sha256=sRxti47ekLTzfk8B609CMQumIb
66
66
  zwave_js_server/util/command_class/energy_production.py,sha256=K1VmGDlqXmKDfQRpTu5o99sjnDShBMV_crEb49o-O_4,1489
67
67
  zwave_js_server/util/command_class/meter.py,sha256=tJ7rbwWUZbJCS7xEJWS_KnqUUGR8RN0f2S8iLkufae0,1258
68
68
  zwave_js_server/util/command_class/multilevel_sensor.py,sha256=wG4GQ0kjrP6d3x5DpEkUHrZd8-0LbvXoYdIxZAf6bso,1427
69
- zwave_js_server_python-0.62.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
70
- zwave_js_server_python-0.62.0.dist-info/METADATA,sha256=cRCotAcdvDEWcOChnqhzog5rUQR74kdJyx0HEFKxOY0,1894
71
- zwave_js_server_python-0.62.0.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
72
- zwave_js_server_python-0.62.0.dist-info/entry_points.txt,sha256=lvzma7Rd_3FW_k-_xGuTfpvcvA2MR_22DOz5f1t7-xg,73
73
- zwave_js_server_python-0.62.0.dist-info/top_level.txt,sha256=-hwsl-i4Av5Op_yfOHC_OP56KPmzp_iVEkeohRIN5Ng,16
74
- zwave_js_server_python-0.62.0.dist-info/RECORD,,
69
+ zwave_js_server_python-0.63.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
70
+ zwave_js_server_python-0.63.0.dist-info/METADATA,sha256=tVUEKLuFjfzoKNIIDhURhgP90AQmEisZh2t8pjZMwmc,1927
71
+ zwave_js_server_python-0.63.0.dist-info/WHEEL,sha256=ck4Vq1_RXyvS4Jt6SI0Vz6fyVs4GWg7AINwpsaGEgPE,91
72
+ zwave_js_server_python-0.63.0.dist-info/entry_points.txt,sha256=lvzma7Rd_3FW_k-_xGuTfpvcvA2MR_22DOz5f1t7-xg,73
73
+ zwave_js_server_python-0.63.0.dist-info/top_level.txt,sha256=-hwsl-i4Av5Op_yfOHC_OP56KPmzp_iVEkeohRIN5Ng,16
74
+ zwave_js_server_python-0.63.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.0.0)
2
+ Generator: setuptools (80.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5