@matter/model 0.16.0-alpha.0-20251216-71c21f901 → 0.16.0-alpha.0-20251220-0bb8d9f89
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/dist/cjs/logic/DefaultValue.js +1 -1
- package/dist/cjs/standard/elements/ota-software-update-requestor.element.js +1 -1
- package/dist/esm/logic/DefaultValue.js +1 -1
- package/dist/esm/standard/elements/ota-software-update-requestor.element.js +1 -1
- package/package.json +4 -4
- package/src/logic/DefaultValue.ts +1 -1
- package/src/standard/elements/ota-software-update-requestor.element.ts +1 -1
|
@@ -21,7 +21,7 @@ __export(DefaultValue_exports, {
|
|
|
21
21
|
DefaultValue: () => DefaultValue
|
|
22
22
|
});
|
|
23
23
|
module.exports = __toCommonJS(DefaultValue_exports);
|
|
24
|
-
var import_general = require("
|
|
24
|
+
var import_general = require("#general");
|
|
25
25
|
var import_common = require("../common/index.js");
|
|
26
26
|
var import_DecodedBitmap = require("./DecodedBitmap.js");
|
|
27
27
|
/**
|
|
@@ -54,7 +54,7 @@ const OtaSoftwareUpdateRequestor = (0, import_elements.ClusterElement)(
|
|
|
54
54
|
conformance: "M",
|
|
55
55
|
constraint: "0 to 100",
|
|
56
56
|
default: null,
|
|
57
|
-
quality: "X"
|
|
57
|
+
quality: "X Q"
|
|
58
58
|
}),
|
|
59
59
|
(0, import_elements.EventElement)(
|
|
60
60
|
{ name: "StateTransition", id: 0, access: "V", conformance: "M", priority: "info" },
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright 2022-2025 Matter.js Authors
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
import { Bytes, camelize, Duration, NotImplementedError } from "
|
|
6
|
+
import { Bytes, camelize, Duration, NotImplementedError } from "#general";
|
|
7
7
|
import { FieldValue, Metatype } from "../common/index.js";
|
|
8
8
|
import { DecodedBitmap } from "./DecodedBitmap.js";
|
|
9
9
|
function DefaultValue(scope, model, ifValid = false) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matter/model",
|
|
3
|
-
"version": "0.16.0-alpha.0-
|
|
3
|
+
"version": "0.16.0-alpha.0-20251220-0bb8d9f89",
|
|
4
4
|
"description": "Matter data model",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"iot",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"embed-examples": "embedme **/README.md"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@matter/general": "0.16.0-alpha.0-
|
|
34
|
+
"@matter/general": "0.16.0-alpha.0-20251220-0bb8d9f89"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@matter/testing": "0.16.0-alpha.0-
|
|
38
|
-
"@matter/tools": "0.16.0-alpha.0-
|
|
37
|
+
"@matter/testing": "0.16.0-alpha.0-20251220-0bb8d9f89",
|
|
38
|
+
"@matter/tools": "0.16.0-alpha.0-20251220-0bb8d9f89"
|
|
39
39
|
},
|
|
40
40
|
"files": [
|
|
41
41
|
"dist/**/*",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { Bytes, camelize, Duration, NotImplementedError } from "
|
|
7
|
+
import { Bytes, camelize, Duration, NotImplementedError } from "#general";
|
|
8
8
|
import { FieldValue, Metatype } from "../common/index.js";
|
|
9
9
|
import type { ValueModel } from "../models/ValueModel.js";
|
|
10
10
|
import { DecodedBitmap } from "./DecodedBitmap.js";
|
|
@@ -32,7 +32,7 @@ export const OtaSoftwareUpdateRequestor = Cluster(
|
|
|
32
32
|
Attribute({ name: "UpdateState", id: 0x2, type: "UpdateStateEnum", access: "R V", conformance: "M", default: 0 }),
|
|
33
33
|
Attribute({
|
|
34
34
|
name: "UpdateStateProgress", id: 0x3, type: "uint8", access: "R V", conformance: "M",
|
|
35
|
-
constraint: "0 to 100", default: null, quality: "X"
|
|
35
|
+
constraint: "0 to 100", default: null, quality: "X Q"
|
|
36
36
|
}),
|
|
37
37
|
|
|
38
38
|
Event(
|