@matter/types 0.13.1-alpha.0-20250517-99a1e848a → 0.13.1-alpha.0-20250520-d699cd56d
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.
|
@@ -23,7 +23,7 @@ __export(ClusterComposer_exports, {
|
|
|
23
23
|
});
|
|
24
24
|
module.exports = __toCommonJS(ClusterComposer_exports);
|
|
25
25
|
var import_general = require("#general");
|
|
26
|
-
var import_model = require("
|
|
26
|
+
var import_model = require("#model");
|
|
27
27
|
var import_BitmapSchema = require("../../schema/BitmapSchema.js");
|
|
28
28
|
var import_ClusterType = require("../ClusterType.js");
|
|
29
29
|
/**
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
6
|
import { camelize, MatterError, serialize } from "#general";
|
|
7
|
-
import { FeatureSet } from "
|
|
7
|
+
import { FeatureSet } from "#model";
|
|
8
8
|
import { BitFlags } from "../../schema/BitmapSchema.js";
|
|
9
9
|
import { ClusterType } from "../ClusterType.js";
|
|
10
10
|
class IllegalClusterError extends MatterError {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matter/types",
|
|
3
|
-
"version": "0.13.1-alpha.0-
|
|
3
|
+
"version": "0.13.1-alpha.0-20250520-d699cd56d",
|
|
4
4
|
"description": "Definitions for Matter application",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"iot",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"embed-examples": "embedme **/README.md"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@matter/general": "0.13.1-alpha.0-
|
|
37
|
-
"@matter/model": "0.13.1-alpha.0-
|
|
36
|
+
"@matter/general": "0.13.1-alpha.0-20250520-d699cd56d",
|
|
37
|
+
"@matter/model": "0.13.1-alpha.0-20250520-d699cd56d"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@matter/tools": "0.13.1-alpha.0-
|
|
41
|
-
"@matter/testing": "0.13.1-alpha.0-
|
|
40
|
+
"@matter/tools": "0.13.1-alpha.0-20250520-d699cd56d",
|
|
41
|
+
"@matter/testing": "0.13.1-alpha.0-20250520-d699cd56d"
|
|
42
42
|
},
|
|
43
43
|
"files": [
|
|
44
44
|
"dist/**/*",
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import { camelize, MatterError, serialize } from "#general";
|
|
8
|
-
import { FeatureSet } from "
|
|
8
|
+
import { FeatureSet } from "#model";
|
|
9
9
|
import { BitFlags } from "../../schema/BitmapSchema.js";
|
|
10
10
|
import { ClusterType } from "../ClusterType.js";
|
|
11
11
|
|