matterbridge 1.3.0 → 1.3.2
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.
- package/CHANGELOG.md +50 -0
- package/CODEOWNERS +1 -0
- package/README.md +27 -11
- package/dist/cluster/CarbonDioxideConcentrationMeasurementCluster.d.ts +396 -0
- package/dist/cluster/CarbonDioxideConcentrationMeasurementCluster.d.ts.map +1 -0
- package/dist/cluster/CarbonDioxideConcentrationMeasurementCluster.js +30 -0
- package/dist/cluster/CarbonDioxideConcentrationMeasurementCluster.js.map +1 -0
- package/dist/cluster/FormaldehydeConcentrationMeasurementCluster.d.ts +396 -0
- package/dist/cluster/FormaldehydeConcentrationMeasurementCluster.d.ts.map +1 -0
- package/dist/cluster/FormaldehydeConcentrationMeasurementCluster.js +30 -0
- package/dist/cluster/FormaldehydeConcentrationMeasurementCluster.js.map +1 -0
- package/dist/cluster/NitrogenDioxideConcentrationMeasurementCluster.d.ts +396 -0
- package/dist/cluster/NitrogenDioxideConcentrationMeasurementCluster.d.ts.map +1 -0
- package/dist/cluster/NitrogenDioxideConcentrationMeasurementCluster.js +34 -0
- package/dist/cluster/NitrogenDioxideConcentrationMeasurementCluster.js.map +1 -0
- package/dist/cluster/OzoneConcentrationMeasurementCluster.d.ts +395 -0
- package/dist/cluster/OzoneConcentrationMeasurementCluster.d.ts.map +1 -0
- package/dist/cluster/OzoneConcentrationMeasurementCluster.js +29 -0
- package/dist/cluster/OzoneConcentrationMeasurementCluster.js.map +1 -0
- package/dist/cluster/Pm10ConcentrationMeasurementCluster.d.ts +395 -0
- package/dist/cluster/Pm10ConcentrationMeasurementCluster.d.ts.map +1 -0
- package/dist/cluster/Pm10ConcentrationMeasurementCluster.js +29 -0
- package/dist/cluster/Pm10ConcentrationMeasurementCluster.js.map +1 -0
- package/dist/cluster/Pm1ConcentrationMeasurementCluster.d.ts +395 -0
- package/dist/cluster/Pm1ConcentrationMeasurementCluster.d.ts.map +1 -0
- package/dist/cluster/Pm1ConcentrationMeasurementCluster.js +29 -0
- package/dist/cluster/Pm1ConcentrationMeasurementCluster.js.map +1 -0
- package/dist/cluster/Pm25ConcentrationMeasurementCluster.d.ts +395 -0
- package/dist/cluster/Pm25ConcentrationMeasurementCluster.d.ts.map +1 -0
- package/dist/cluster/Pm25ConcentrationMeasurementCluster.js +29 -0
- package/dist/cluster/Pm25ConcentrationMeasurementCluster.js.map +1 -0
- package/dist/cluster/PowerTopologyCluster.d.ts +0 -10
- package/dist/cluster/PowerTopologyCluster.d.ts.map +1 -1
- package/dist/cluster/RadonConcentrationMeasurementCluster.d.ts +395 -0
- package/dist/cluster/RadonConcentrationMeasurementCluster.d.ts.map +1 -0
- package/dist/cluster/RadonConcentrationMeasurementCluster.js +29 -0
- package/dist/cluster/RadonConcentrationMeasurementCluster.js.map +1 -0
- package/dist/cluster/SmokeCoAlarmCluster.d.ts +0 -24
- package/dist/cluster/SmokeCoAlarmCluster.d.ts.map +1 -1
- package/dist/defaultConfigSchema.d.ts +4 -7
- package/dist/defaultConfigSchema.d.ts.map +1 -1
- package/dist/defaultConfigSchema.js +13 -246
- package/dist/defaultConfigSchema.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/matterbridge.d.ts +10 -30
- package/dist/matterbridge.d.ts.map +1 -1
- package/dist/matterbridge.js +74 -74
- package/dist/matterbridge.js.map +1 -1
- package/dist/matterbridgeAccessoryPlatform.d.ts +2 -2
- package/dist/matterbridgeAccessoryPlatform.d.ts.map +1 -1
- package/dist/matterbridgeAccessoryPlatform.js.map +1 -1
- package/dist/matterbridgeDevice.d.ts +455 -43
- package/dist/matterbridgeDevice.d.ts.map +1 -1
- package/dist/matterbridgeDevice.js +283 -29
- package/dist/matterbridgeDevice.js.map +1 -1
- package/dist/matterbridgeDynamicPlatform.d.ts +2 -2
- package/dist/matterbridgeDynamicPlatform.d.ts.map +1 -1
- package/dist/matterbridgeDynamicPlatform.js.map +1 -1
- package/dist/matterbridgePlatform.d.ts +11 -7
- package/dist/matterbridgePlatform.d.ts.map +1 -1
- package/dist/matterbridgePlatform.js.map +1 -1
- package/dist/matterbridgeV8.d.ts +0 -1
- package/dist/matterbridgeV8.d.ts.map +1 -1
- package/package.json +7 -7
|
@@ -0,0 +1,395 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2022-2024 Matter.js Authors
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
/** * THIS FILE IS GENERATED, DO NOT EDIT ***/
|
|
7
|
+
import { MutableCluster } from '@project-chip/matter-node.js/cluster';
|
|
8
|
+
import { Identity } from '@project-chip/matter-node.js/util';
|
|
9
|
+
import { ConcentrationMeasurement } from './ConcentrationMeasurementCluster.js';
|
|
10
|
+
export declare namespace RadonConcentrationMeasurement {
|
|
11
|
+
const Base: {
|
|
12
|
+
id: number;
|
|
13
|
+
name: string;
|
|
14
|
+
features: {
|
|
15
|
+
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
16
|
+
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
17
|
+
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
18
|
+
readonly criticalLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
19
|
+
readonly peakMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
20
|
+
readonly averageMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
21
|
+
};
|
|
22
|
+
revision: 3;
|
|
23
|
+
attributes: {
|
|
24
|
+
readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
|
|
25
|
+
};
|
|
26
|
+
extensions: readonly [{
|
|
27
|
+
readonly flags: {
|
|
28
|
+
readonly numericMeasurement: true;
|
|
29
|
+
};
|
|
30
|
+
readonly component: {
|
|
31
|
+
readonly attributes: {
|
|
32
|
+
readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
33
|
+
readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
34
|
+
readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
35
|
+
readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
36
|
+
readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}, {
|
|
40
|
+
readonly flags: {
|
|
41
|
+
readonly peakMeasurement: true;
|
|
42
|
+
};
|
|
43
|
+
readonly component: {
|
|
44
|
+
readonly attributes: {
|
|
45
|
+
readonly peakMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
46
|
+
readonly peakMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}, {
|
|
50
|
+
readonly flags: {
|
|
51
|
+
readonly averageMeasurement: true;
|
|
52
|
+
};
|
|
53
|
+
readonly component: {
|
|
54
|
+
readonly attributes: {
|
|
55
|
+
readonly averageMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
56
|
+
readonly averageMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
}, {
|
|
60
|
+
readonly flags: {
|
|
61
|
+
readonly levelIndication: true;
|
|
62
|
+
};
|
|
63
|
+
readonly component: {
|
|
64
|
+
readonly attributes: {
|
|
65
|
+
readonly levelValue: import("@project-chip/matter-node.js/cluster").Attribute<ConcentrationMeasurement.LevelValue, any>;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
}, {
|
|
69
|
+
readonly flags: {
|
|
70
|
+
readonly mediumLevel: true;
|
|
71
|
+
readonly levelIndication: false;
|
|
72
|
+
};
|
|
73
|
+
readonly component: false;
|
|
74
|
+
}, {
|
|
75
|
+
readonly flags: {
|
|
76
|
+
readonly criticalLevel: true;
|
|
77
|
+
readonly levelIndication: false;
|
|
78
|
+
};
|
|
79
|
+
readonly component: false;
|
|
80
|
+
}, {
|
|
81
|
+
readonly flags: {
|
|
82
|
+
readonly peakMeasurement: true;
|
|
83
|
+
readonly numericMeasurement: false;
|
|
84
|
+
};
|
|
85
|
+
readonly component: false;
|
|
86
|
+
}, {
|
|
87
|
+
readonly flags: {
|
|
88
|
+
readonly averageMeasurement: true;
|
|
89
|
+
readonly numericMeasurement: false;
|
|
90
|
+
};
|
|
91
|
+
readonly component: false;
|
|
92
|
+
}, {
|
|
93
|
+
readonly flags: {
|
|
94
|
+
readonly numericMeasurement: false;
|
|
95
|
+
readonly levelIndication: false;
|
|
96
|
+
};
|
|
97
|
+
readonly component: false;
|
|
98
|
+
}];
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* @see {@link Cluster}
|
|
102
|
+
*/
|
|
103
|
+
const ClusterInstance: MutableCluster.ExtensibleOnly<{
|
|
104
|
+
id: number;
|
|
105
|
+
name: string;
|
|
106
|
+
features: {
|
|
107
|
+
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
108
|
+
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
109
|
+
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
110
|
+
readonly criticalLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
111
|
+
readonly peakMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
112
|
+
readonly averageMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
113
|
+
};
|
|
114
|
+
revision: 3;
|
|
115
|
+
attributes: {
|
|
116
|
+
readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
|
|
117
|
+
};
|
|
118
|
+
extensions: readonly [{
|
|
119
|
+
readonly flags: {
|
|
120
|
+
readonly numericMeasurement: true;
|
|
121
|
+
};
|
|
122
|
+
readonly component: {
|
|
123
|
+
readonly attributes: {
|
|
124
|
+
readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
125
|
+
readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
126
|
+
readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
127
|
+
readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
128
|
+
readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
}, {
|
|
132
|
+
readonly flags: {
|
|
133
|
+
readonly peakMeasurement: true;
|
|
134
|
+
};
|
|
135
|
+
readonly component: {
|
|
136
|
+
readonly attributes: {
|
|
137
|
+
readonly peakMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
138
|
+
readonly peakMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
}, {
|
|
142
|
+
readonly flags: {
|
|
143
|
+
readonly averageMeasurement: true;
|
|
144
|
+
};
|
|
145
|
+
readonly component: {
|
|
146
|
+
readonly attributes: {
|
|
147
|
+
readonly averageMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
148
|
+
readonly averageMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
}, {
|
|
152
|
+
readonly flags: {
|
|
153
|
+
readonly levelIndication: true;
|
|
154
|
+
};
|
|
155
|
+
readonly component: {
|
|
156
|
+
readonly attributes: {
|
|
157
|
+
readonly levelValue: import("@project-chip/matter-node.js/cluster").Attribute<ConcentrationMeasurement.LevelValue, any>;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
}, {
|
|
161
|
+
readonly flags: {
|
|
162
|
+
readonly mediumLevel: true;
|
|
163
|
+
readonly levelIndication: false;
|
|
164
|
+
};
|
|
165
|
+
readonly component: false;
|
|
166
|
+
}, {
|
|
167
|
+
readonly flags: {
|
|
168
|
+
readonly criticalLevel: true;
|
|
169
|
+
readonly levelIndication: false;
|
|
170
|
+
};
|
|
171
|
+
readonly component: false;
|
|
172
|
+
}, {
|
|
173
|
+
readonly flags: {
|
|
174
|
+
readonly peakMeasurement: true;
|
|
175
|
+
readonly numericMeasurement: false;
|
|
176
|
+
};
|
|
177
|
+
readonly component: false;
|
|
178
|
+
}, {
|
|
179
|
+
readonly flags: {
|
|
180
|
+
readonly averageMeasurement: true;
|
|
181
|
+
readonly numericMeasurement: false;
|
|
182
|
+
};
|
|
183
|
+
readonly component: false;
|
|
184
|
+
}, {
|
|
185
|
+
readonly flags: {
|
|
186
|
+
readonly numericMeasurement: false;
|
|
187
|
+
readonly levelIndication: false;
|
|
188
|
+
};
|
|
189
|
+
readonly component: false;
|
|
190
|
+
}];
|
|
191
|
+
}>;
|
|
192
|
+
/**
|
|
193
|
+
* This alias specializes the semantics of {@link ConcentrationMeasurement.Cluster}.
|
|
194
|
+
*
|
|
195
|
+
* Per the Matter specification you cannot use {@link RadonConcentrationMeasurementCluster} without enabling
|
|
196
|
+
* certain feature combinations. You must use the {@link with} factory method to obtain a working cluster.
|
|
197
|
+
*/
|
|
198
|
+
type Cluster = Identity<typeof ClusterInstance>;
|
|
199
|
+
const Cluster: Cluster;
|
|
200
|
+
/**
|
|
201
|
+
* This cluster supports all RadonConcentrationMeasurement features. It may support illegal feature combinations.
|
|
202
|
+
*
|
|
203
|
+
* If you use this cluster you must manually specify which features are active and ensure the set of active
|
|
204
|
+
* features is legal per the Matter specification.
|
|
205
|
+
*/
|
|
206
|
+
const CompleteInstance: MutableCluster<{
|
|
207
|
+
readonly id: 1071;
|
|
208
|
+
readonly name: "ConcentrationMeasurement";
|
|
209
|
+
readonly revision: 3;
|
|
210
|
+
readonly features: {
|
|
211
|
+
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
212
|
+
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
213
|
+
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
214
|
+
readonly criticalLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
215
|
+
readonly peakMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
216
|
+
readonly averageMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
217
|
+
};
|
|
218
|
+
readonly attributes: {
|
|
219
|
+
readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any> & {
|
|
220
|
+
readonly optional: true;
|
|
221
|
+
readonly isConditional: true;
|
|
222
|
+
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter.js/schema").BitSchema> | [];
|
|
223
|
+
readonly mandatoryIf: [] | [{
|
|
224
|
+
numericMeasurement: boolean;
|
|
225
|
+
}];
|
|
226
|
+
};
|
|
227
|
+
readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any> & {
|
|
228
|
+
readonly optional: true;
|
|
229
|
+
readonly isConditional: true;
|
|
230
|
+
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter.js/schema").BitSchema> | [];
|
|
231
|
+
readonly mandatoryIf: [] | [{
|
|
232
|
+
numericMeasurement: boolean;
|
|
233
|
+
}];
|
|
234
|
+
};
|
|
235
|
+
readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any> & {
|
|
236
|
+
readonly optional: true;
|
|
237
|
+
readonly isConditional: true;
|
|
238
|
+
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter.js/schema").BitSchema> | [];
|
|
239
|
+
readonly mandatoryIf: [] | [{
|
|
240
|
+
numericMeasurement: boolean;
|
|
241
|
+
}];
|
|
242
|
+
};
|
|
243
|
+
readonly peakMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any> & {
|
|
244
|
+
readonly optional: true;
|
|
245
|
+
readonly isConditional: true;
|
|
246
|
+
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter.js/schema").BitSchema> | [];
|
|
247
|
+
readonly mandatoryIf: [] | [{
|
|
248
|
+
peakMeasurement: boolean;
|
|
249
|
+
}];
|
|
250
|
+
};
|
|
251
|
+
readonly peakMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").Attribute<number, any> & {
|
|
252
|
+
readonly optional: true;
|
|
253
|
+
readonly isConditional: true;
|
|
254
|
+
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter.js/schema").BitSchema> | [];
|
|
255
|
+
readonly mandatoryIf: [] | [{
|
|
256
|
+
peakMeasurement: boolean;
|
|
257
|
+
}];
|
|
258
|
+
};
|
|
259
|
+
readonly averageMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any> & {
|
|
260
|
+
readonly optional: true;
|
|
261
|
+
readonly isConditional: true;
|
|
262
|
+
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter.js/schema").BitSchema> | [];
|
|
263
|
+
readonly mandatoryIf: [] | [{
|
|
264
|
+
averageMeasurement: boolean;
|
|
265
|
+
}];
|
|
266
|
+
};
|
|
267
|
+
readonly averageMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").Attribute<number, any> & {
|
|
268
|
+
readonly optional: true;
|
|
269
|
+
readonly isConditional: true;
|
|
270
|
+
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter.js/schema").BitSchema> | [];
|
|
271
|
+
readonly mandatoryIf: [] | [{
|
|
272
|
+
averageMeasurement: boolean;
|
|
273
|
+
}];
|
|
274
|
+
};
|
|
275
|
+
readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any> & {
|
|
276
|
+
readonly optional: true;
|
|
277
|
+
readonly isConditional: true;
|
|
278
|
+
readonly optionalIf: [] | [{
|
|
279
|
+
numericMeasurement: boolean;
|
|
280
|
+
}];
|
|
281
|
+
readonly mandatoryIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter.js/schema").BitSchema> | [];
|
|
282
|
+
};
|
|
283
|
+
readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any> & {
|
|
284
|
+
readonly optional: true;
|
|
285
|
+
readonly isConditional: true;
|
|
286
|
+
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter.js/schema").BitSchema> | [];
|
|
287
|
+
readonly mandatoryIf: [] | [{
|
|
288
|
+
numericMeasurement: boolean;
|
|
289
|
+
}];
|
|
290
|
+
};
|
|
291
|
+
readonly levelValue: import("@project-chip/matter-node.js/cluster").Attribute<ConcentrationMeasurement.LevelValue, any> & {
|
|
292
|
+
readonly optional: true;
|
|
293
|
+
readonly isConditional: true;
|
|
294
|
+
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter.js/schema").BitSchema> | [];
|
|
295
|
+
readonly mandatoryIf: [] | [{
|
|
296
|
+
levelIndication: boolean;
|
|
297
|
+
}];
|
|
298
|
+
};
|
|
299
|
+
readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
|
|
300
|
+
};
|
|
301
|
+
}>;
|
|
302
|
+
type Complete = Identity<typeof CompleteInstance>;
|
|
303
|
+
const Complete: Complete;
|
|
304
|
+
}
|
|
305
|
+
export type RadonConcentrationMeasurementCluster = RadonConcentrationMeasurement.Cluster;
|
|
306
|
+
export declare const RadonConcentrationMeasurementCluster: MutableCluster.ExtensibleOnly<{
|
|
307
|
+
id: number;
|
|
308
|
+
name: string;
|
|
309
|
+
features: {
|
|
310
|
+
readonly numericMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
311
|
+
readonly levelIndication: import("@project-chip/matter.js/schema").BitFlag;
|
|
312
|
+
readonly mediumLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
313
|
+
readonly criticalLevel: import("@project-chip/matter.js/schema").BitFlag;
|
|
314
|
+
readonly peakMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
315
|
+
readonly averageMeasurement: import("@project-chip/matter.js/schema").BitFlag;
|
|
316
|
+
};
|
|
317
|
+
revision: 3;
|
|
318
|
+
attributes: {
|
|
319
|
+
readonly measurementMedium: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementMedium, any>;
|
|
320
|
+
};
|
|
321
|
+
extensions: readonly [{
|
|
322
|
+
readonly flags: {
|
|
323
|
+
readonly numericMeasurement: true;
|
|
324
|
+
};
|
|
325
|
+
readonly component: {
|
|
326
|
+
readonly attributes: {
|
|
327
|
+
readonly measuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
328
|
+
readonly minMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
329
|
+
readonly maxMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
330
|
+
readonly uncertainty: import("@project-chip/matter-node.js/cluster").OptionalAttribute<number, any>;
|
|
331
|
+
readonly measurementUnit: import("@project-chip/matter-node.js/cluster").FixedAttribute<ConcentrationMeasurement.MeasurementUnit, any>;
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
}, {
|
|
335
|
+
readonly flags: {
|
|
336
|
+
readonly peakMeasurement: true;
|
|
337
|
+
};
|
|
338
|
+
readonly component: {
|
|
339
|
+
readonly attributes: {
|
|
340
|
+
readonly peakMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
341
|
+
readonly peakMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
342
|
+
};
|
|
343
|
+
};
|
|
344
|
+
}, {
|
|
345
|
+
readonly flags: {
|
|
346
|
+
readonly averageMeasurement: true;
|
|
347
|
+
};
|
|
348
|
+
readonly component: {
|
|
349
|
+
readonly attributes: {
|
|
350
|
+
readonly averageMeasuredValue: import("@project-chip/matter-node.js/cluster").Attribute<number | null, any>;
|
|
351
|
+
readonly averageMeasuredValueWindow: import("@project-chip/matter-node.js/cluster").Attribute<number, any>;
|
|
352
|
+
};
|
|
353
|
+
};
|
|
354
|
+
}, {
|
|
355
|
+
readonly flags: {
|
|
356
|
+
readonly levelIndication: true;
|
|
357
|
+
};
|
|
358
|
+
readonly component: {
|
|
359
|
+
readonly attributes: {
|
|
360
|
+
readonly levelValue: import("@project-chip/matter-node.js/cluster").Attribute<ConcentrationMeasurement.LevelValue, any>;
|
|
361
|
+
};
|
|
362
|
+
};
|
|
363
|
+
}, {
|
|
364
|
+
readonly flags: {
|
|
365
|
+
readonly mediumLevel: true;
|
|
366
|
+
readonly levelIndication: false;
|
|
367
|
+
};
|
|
368
|
+
readonly component: false;
|
|
369
|
+
}, {
|
|
370
|
+
readonly flags: {
|
|
371
|
+
readonly criticalLevel: true;
|
|
372
|
+
readonly levelIndication: false;
|
|
373
|
+
};
|
|
374
|
+
readonly component: false;
|
|
375
|
+
}, {
|
|
376
|
+
readonly flags: {
|
|
377
|
+
readonly peakMeasurement: true;
|
|
378
|
+
readonly numericMeasurement: false;
|
|
379
|
+
};
|
|
380
|
+
readonly component: false;
|
|
381
|
+
}, {
|
|
382
|
+
readonly flags: {
|
|
383
|
+
readonly averageMeasurement: true;
|
|
384
|
+
readonly numericMeasurement: false;
|
|
385
|
+
};
|
|
386
|
+
readonly component: false;
|
|
387
|
+
}, {
|
|
388
|
+
readonly flags: {
|
|
389
|
+
readonly numericMeasurement: false;
|
|
390
|
+
readonly levelIndication: false;
|
|
391
|
+
};
|
|
392
|
+
readonly component: false;
|
|
393
|
+
}];
|
|
394
|
+
}>;
|
|
395
|
+
//# sourceMappingURL=RadonConcentrationMeasurementCluster.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RadonConcentrationMeasurementCluster.d.ts","sourceRoot":"","sources":["../../src/cluster/RadonConcentrationMeasurementCluster.ts"],"names":[],"mappings":"AACA;;;;GAIG;AAEH,8CAA8C;AAE9C,OAAO,EAAmB,cAAc,EAAE,MAAM,sCAAsC,CAAC;AACvF,OAAO,EAAE,QAAQ,EAAE,MAAM,mCAAmC,CAAC;AAC7D,OAAO,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAEhF,yBAAiB,6BAA6B,CAAC;IACtC,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAAyF,CAAC;IAE3G;;OAEG;IACI,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAsC,CAAC;IAEnE;;;;;OAKG;IACH,KAAY,OAAO,GAAG,QAAQ,CAAC,OAAO,eAAe,CAAC,CAAC;IAEhD,MAAM,OAAO,EAAE,OAAyB,CAAC;IAEhD;;;;;OAKG;IACI,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAsE,CAAC;IAEpG,KAAY,QAAQ,GAAG,QAAQ,CAAC,OAAO,gBAAgB,CAAC,CAAC;IAClD,MAAM,QAAQ,EAAE,QAA2B,CAAC;CACpD;AAED,MAAM,MAAM,oCAAoC,GAAG,6BAA6B,CAAC,OAAO,CAAC;AACzF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAwC,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-namespace */
|
|
2
|
+
/**
|
|
3
|
+
* @license
|
|
4
|
+
* Copyright 2022-2024 Matter.js Authors
|
|
5
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
6
|
+
*/
|
|
7
|
+
/** * THIS FILE IS GENERATED, DO NOT EDIT ***/
|
|
8
|
+
import { ClusterRegistry, MutableCluster } from '@project-chip/matter-node.js/cluster';
|
|
9
|
+
import { ConcentrationMeasurement } from './ConcentrationMeasurementCluster.js';
|
|
10
|
+
export var RadonConcentrationMeasurement;
|
|
11
|
+
(function (RadonConcentrationMeasurement) {
|
|
12
|
+
RadonConcentrationMeasurement.Base = { ...ConcentrationMeasurement.Base, id: 0x42f, name: 'RadonConcentrationMeasurement' };
|
|
13
|
+
/**
|
|
14
|
+
* @see {@link Cluster}
|
|
15
|
+
*/
|
|
16
|
+
RadonConcentrationMeasurement.ClusterInstance = MutableCluster.ExtensibleOnly(RadonConcentrationMeasurement.Base);
|
|
17
|
+
RadonConcentrationMeasurement.Cluster = RadonConcentrationMeasurement.ClusterInstance;
|
|
18
|
+
/**
|
|
19
|
+
* This cluster supports all RadonConcentrationMeasurement features. It may support illegal feature combinations.
|
|
20
|
+
*
|
|
21
|
+
* If you use this cluster you must manually specify which features are active and ensure the set of active
|
|
22
|
+
* features is legal per the Matter specification.
|
|
23
|
+
*/
|
|
24
|
+
RadonConcentrationMeasurement.CompleteInstance = MutableCluster({ ...ConcentrationMeasurement.Complete, id: 0x42f });
|
|
25
|
+
RadonConcentrationMeasurement.Complete = RadonConcentrationMeasurement.CompleteInstance;
|
|
26
|
+
})(RadonConcentrationMeasurement || (RadonConcentrationMeasurement = {}));
|
|
27
|
+
export const RadonConcentrationMeasurementCluster = RadonConcentrationMeasurement.Cluster;
|
|
28
|
+
ClusterRegistry.register(RadonConcentrationMeasurement.Complete);
|
|
29
|
+
//# sourceMappingURL=RadonConcentrationMeasurementCluster.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RadonConcentrationMeasurementCluster.js","sourceRoot":"","sources":["../../src/cluster/RadonConcentrationMeasurementCluster.ts"],"names":[],"mappings":"AAAA,oDAAoD;AACpD;;;;GAIG;AAEH,8CAA8C;AAE9C,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,sCAAsC,CAAC;AAEvF,OAAO,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AAEhF,MAAM,KAAW,6BAA6B,CA4B7C;AA5BD,WAAiB,6BAA6B;IAC/B,kCAAI,GAAG,EAAE,GAAG,wBAAwB,CAAC,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,+BAA+B,EAAE,CAAC;IAE3G;;OAEG;IACU,6CAAe,GAAG,cAAc,CAAC,cAAc,CAAC,8BAAA,IAAI,CAAC,CAAC;IAUtD,qCAAO,GAAY,8BAAA,eAAe,CAAC;IAEhD;;;;;OAKG;IACU,8CAAgB,GAAG,cAAc,CAAC,EAAE,GAAG,wBAAwB,CAAC,QAAQ,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC;IAGvF,sCAAQ,GAAa,8BAAA,gBAAgB,CAAC;AACrD,CAAC,EA5BgB,6BAA6B,KAA7B,6BAA6B,QA4B7C;AAGD,MAAM,CAAC,MAAM,oCAAoC,GAAG,6BAA6B,CAAC,OAAO,CAAC;AAC1F,eAAe,CAAC,QAAQ,CAAC,6BAA6B,CAAC,QAAQ,CAAC,CAAC"}
|
|
@@ -1044,9 +1044,6 @@ export declare namespace SmokeCoAlarm {
|
|
|
1044
1044
|
readonly optional: true;
|
|
1045
1045
|
readonly isConditional: true;
|
|
1046
1046
|
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter-node.js/schema").BitSchema> | [];
|
|
1047
|
-
/**
|
|
1048
|
-
* Standard Sensitivity
|
|
1049
|
-
*/
|
|
1050
1047
|
readonly mandatoryIf: [] | [{
|
|
1051
1048
|
smokeAlarm: boolean;
|
|
1052
1049
|
}];
|
|
@@ -1055,9 +1052,6 @@ export declare namespace SmokeCoAlarm {
|
|
|
1055
1052
|
readonly optional: true;
|
|
1056
1053
|
readonly isConditional: true;
|
|
1057
1054
|
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter-node.js/schema").BitSchema> | [];
|
|
1058
|
-
/**
|
|
1059
|
-
* Standard Sensitivity
|
|
1060
|
-
*/
|
|
1061
1055
|
readonly mandatoryIf: [] | [{
|
|
1062
1056
|
coAlarm: boolean;
|
|
1063
1057
|
}];
|
|
@@ -1068,9 +1062,6 @@ export declare namespace SmokeCoAlarm {
|
|
|
1068
1062
|
readonly optionalIf: [] | [{
|
|
1069
1063
|
smokeAlarm: boolean;
|
|
1070
1064
|
}];
|
|
1071
|
-
/**
|
|
1072
|
-
* Standard Sensitivity
|
|
1073
|
-
*/
|
|
1074
1065
|
readonly mandatoryIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter-node.js/schema").BitSchema> | [];
|
|
1075
1066
|
};
|
|
1076
1067
|
readonly smokeSensitivityLevel: OptionalWritableAttribute<Sensitivity, any> & {
|
|
@@ -1079,9 +1070,6 @@ export declare namespace SmokeCoAlarm {
|
|
|
1079
1070
|
readonly optionalIf: [] | [{
|
|
1080
1071
|
smokeAlarm: boolean;
|
|
1081
1072
|
}];
|
|
1082
|
-
/**
|
|
1083
|
-
* Standard Sensitivity
|
|
1084
|
-
*/
|
|
1085
1073
|
readonly mandatoryIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter-node.js/schema").BitSchema> | [];
|
|
1086
1074
|
};
|
|
1087
1075
|
/**
|
|
@@ -1193,9 +1181,6 @@ export declare namespace SmokeCoAlarm {
|
|
|
1193
1181
|
readonly optional: true;
|
|
1194
1182
|
readonly isConditional: true;
|
|
1195
1183
|
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter-node.js/schema").BitSchema> | [];
|
|
1196
|
-
/**
|
|
1197
|
-
* Standard Sensitivity
|
|
1198
|
-
*/
|
|
1199
1184
|
readonly mandatoryIf: [] | [{
|
|
1200
1185
|
smokeAlarm: boolean;
|
|
1201
1186
|
}];
|
|
@@ -1211,9 +1196,6 @@ export declare namespace SmokeCoAlarm {
|
|
|
1211
1196
|
readonly optional: true;
|
|
1212
1197
|
readonly isConditional: true;
|
|
1213
1198
|
readonly optionalIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter-node.js/schema").BitSchema> | [];
|
|
1214
|
-
/**
|
|
1215
|
-
* Standard Sensitivity
|
|
1216
|
-
*/
|
|
1217
1199
|
readonly mandatoryIf: [] | [{
|
|
1218
1200
|
coAlarm: boolean;
|
|
1219
1201
|
}];
|
|
@@ -1231,9 +1213,6 @@ export declare namespace SmokeCoAlarm {
|
|
|
1231
1213
|
readonly optionalIf: [] | [{
|
|
1232
1214
|
smokeAlarm: boolean;
|
|
1233
1215
|
}];
|
|
1234
|
-
/**
|
|
1235
|
-
* Standard Sensitivity
|
|
1236
|
-
*/
|
|
1237
1216
|
readonly mandatoryIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter-node.js/schema").BitSchema> | [];
|
|
1238
1217
|
};
|
|
1239
1218
|
readonly interconnectCoAlarm: OptionalEvent<import("@project-chip/matter-node.js/tlv").TypeFromFields<{
|
|
@@ -1249,9 +1228,6 @@ export declare namespace SmokeCoAlarm {
|
|
|
1249
1228
|
readonly optionalIf: [] | [{
|
|
1250
1229
|
coAlarm: boolean;
|
|
1251
1230
|
}];
|
|
1252
|
-
/**
|
|
1253
|
-
* Standard Sensitivity
|
|
1254
|
-
*/
|
|
1255
1231
|
readonly mandatoryIf: import("@project-chip/matter-node.js/cluster").ConditionalFeatureList<import("@project-chip/matter-node.js/schema").BitSchema> | [];
|
|
1256
1232
|
};
|
|
1257
1233
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SmokeCoAlarmCluster.d.ts","sourceRoot":"","sources":["../../src/cluster/SmokeCoAlarmCluster.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"SmokeCoAlarmCluster.d.ts","sourceRoot":"","sources":["../../src/cluster/SmokeCoAlarmCluster.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file contains the default config
|
|
2
|
+
* This file contains the default config for the plugins.
|
|
3
3
|
*
|
|
4
|
-
* @file
|
|
4
|
+
* @file defaultConfigSchema.ts
|
|
5
5
|
* @author Luca Liguori
|
|
6
6
|
* @date 2024-05-07
|
|
7
|
-
* @version 1.0.
|
|
7
|
+
* @version 1.0.1
|
|
8
8
|
*
|
|
9
9
|
* Copyright 2024 Luca Liguori.
|
|
10
10
|
*
|
|
@@ -20,11 +20,8 @@
|
|
|
20
20
|
* See the License for the specific language governing permissions and
|
|
21
21
|
* limitations under the License. *
|
|
22
22
|
*/
|
|
23
|
-
import { PlatformConfig
|
|
23
|
+
import { PlatformConfig } from './matterbridgePlatform.js';
|
|
24
24
|
export declare const zigbee2mqtt_config: PlatformConfig;
|
|
25
|
-
export declare const zigbee2mqtt_schema: PlatformSchema;
|
|
26
25
|
export declare const somfytahoma_config: PlatformConfig;
|
|
27
|
-
export declare const somfytahoma_schema: PlatformSchema;
|
|
28
26
|
export declare const shelly_config: PlatformConfig;
|
|
29
|
-
export declare const shelly_schema: PlatformSchema;
|
|
30
27
|
//# sourceMappingURL=defaultConfigSchema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"defaultConfigSchema.d.ts","sourceRoot":"","sources":["../src/defaultConfigSchema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,EAAE,cAAc,EAAE,
|
|
1
|
+
{"version":3,"file":"defaultConfigSchema.d.ts","sourceRoot":"","sources":["../src/defaultConfigSchema.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAE3D,eAAO,MAAM,kBAAkB,EAAE,cAiBhC,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,cAWhC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,cAkB3B,CAAC"}
|