matter-python-client 0.4.4a0.dev20260226__tar.gz → 0.5.0__tar.gz
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.
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/PKG-INFO +1 -1
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_python_client.egg-info/PKG-INFO +1 -1
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/common/custom_clusters.py +8 -8
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/pyproject.toml +1 -1
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/README.md +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_python_client.egg-info/SOURCES.txt +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_python_client.egg-info/dependency_links.txt +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_python_client.egg-info/not-zip-safe +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_python_client.egg-info/requires.txt +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_python_client.egg-info/top_level.txt +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/__init__.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/client/__init__.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/client/client.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/client/connection.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/client/exceptions.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/client/models/__init__.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/client/models/device_types.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/client/models/node.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/common/__init__.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/common/const.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/common/errors.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/common/helpers/__init__.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/common/helpers/api.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/common/helpers/json.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/common/helpers/util.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/common/models.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/py.typed +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/setup.cfg +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/tests/test_client_integration.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/tests/test_imports.py +0 -0
- {matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/tests/test_integration.py +0 -0
|
@@ -105,7 +105,7 @@ class EveCluster(Cluster, CustomClusterMixin):
|
|
|
105
105
|
Label="altitude", Tag=0x130A0013, Type=float32
|
|
106
106
|
),
|
|
107
107
|
ClusterObjectFieldDescriptor(
|
|
108
|
-
Label="pressure", Tag=0x130A0014, Type=
|
|
108
|
+
Label="pressure", Tag=0x130A0014, Type=uint
|
|
109
109
|
),
|
|
110
110
|
ClusterObjectFieldDescriptor(
|
|
111
111
|
Label="weatherTrend", Tag=0x130A0015, Type=int
|
|
@@ -132,7 +132,7 @@ class EveCluster(Cluster, CustomClusterMixin):
|
|
|
132
132
|
voltage: float32 | None = None
|
|
133
133
|
current: float32 | None = None
|
|
134
134
|
altitude: float32 | None = None
|
|
135
|
-
pressure:
|
|
135
|
+
pressure: uint | None = None
|
|
136
136
|
weatherTrend: int | None = None
|
|
137
137
|
valvePosition: int | None = None
|
|
138
138
|
motionSensitivity: int | None = None
|
|
@@ -500,9 +500,9 @@ class EveCluster(Cluster, CustomClusterMixin):
|
|
|
500
500
|
@ChipUtility.classproperty
|
|
501
501
|
def attribute_type(cls) -> ClusterObjectFieldDescriptor:
|
|
502
502
|
"""Return attribute type."""
|
|
503
|
-
return ClusterObjectFieldDescriptor(Type=
|
|
503
|
+
return ClusterObjectFieldDescriptor(Type=uint)
|
|
504
504
|
|
|
505
|
-
value:
|
|
505
|
+
value: uint = 0
|
|
506
506
|
|
|
507
507
|
@dataclass
|
|
508
508
|
class WeatherTrend(ClusterAttributeDescriptor, CustomClusterAttributeMixin):
|
|
@@ -1139,7 +1139,7 @@ class DraftElectricalMeasurementCluster(Cluster, CustomClusterMixin):
|
|
|
1139
1139
|
Label="rmsCurrent", Tag=0x00000508, Type=uint
|
|
1140
1140
|
),
|
|
1141
1141
|
ClusterObjectFieldDescriptor(
|
|
1142
|
-
Label="activePower", Tag=0x0000050B, Type=
|
|
1142
|
+
Label="activePower", Tag=0x0000050B, Type=int
|
|
1143
1143
|
),
|
|
1144
1144
|
ClusterObjectFieldDescriptor(
|
|
1145
1145
|
Label="acVoltageMultiplier", Tag=0x00000600, Type=uint
|
|
@@ -1164,7 +1164,7 @@ class DraftElectricalMeasurementCluster(Cluster, CustomClusterMixin):
|
|
|
1164
1164
|
|
|
1165
1165
|
rmsVoltage: uint | None = None
|
|
1166
1166
|
rmsCurrent: uint | None = None
|
|
1167
|
-
activePower:
|
|
1167
|
+
activePower: int | None = None
|
|
1168
1168
|
acVoltageMultiplier: uint | None = None
|
|
1169
1169
|
acVoltageDivisor: uint | None = None
|
|
1170
1170
|
acCurrentMultiplier: uint | None = None
|
|
@@ -1234,9 +1234,9 @@ class DraftElectricalMeasurementCluster(Cluster, CustomClusterMixin):
|
|
|
1234
1234
|
@ChipUtility.classproperty
|
|
1235
1235
|
def attribute_type(cls) -> ClusterObjectFieldDescriptor:
|
|
1236
1236
|
"""Return attribute type."""
|
|
1237
|
-
return ClusterObjectFieldDescriptor(Type=
|
|
1237
|
+
return ClusterObjectFieldDescriptor(Type=int)
|
|
1238
1238
|
|
|
1239
|
-
value:
|
|
1239
|
+
value: int = 0
|
|
1240
1240
|
|
|
1241
1241
|
@dataclass
|
|
1242
1242
|
class AcVoltageMultiplier(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/matter_server/py.typed
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/tests/test_imports.py
RENAMED
|
File without changes
|
{matter_python_client-0.4.4a0.dev20260226 → matter_python_client-0.5.0}/tests/test_integration.py
RENAMED
|
File without changes
|