@matter/model 0.16.9-alpha.0-20260211-5dcebea26 → 0.16.9
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matter/model",
|
|
3
|
-
"version": "0.16.9
|
|
3
|
+
"version": "0.16.9",
|
|
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.9
|
|
34
|
+
"@matter/general": "0.16.9"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@matter/testing": "0.16.9
|
|
38
|
-
"@matter/tools": "0.16.9
|
|
37
|
+
"@matter/testing": "0.16.9",
|
|
38
|
+
"@matter/tools": "0.16.9"
|
|
39
39
|
},
|
|
40
40
|
"files": [
|
|
41
41
|
"dist/**/*",
|
|
@@ -137,7 +137,7 @@ export namespace Conformance {
|
|
|
137
137
|
| Ast.Name
|
|
138
138
|
| Ast.Value
|
|
139
139
|
| Ast.Option
|
|
140
|
-
//
|
|
140
|
+
// oxlint-disable-next-line @typescript-eslint/no-duplicate-type-constituents
|
|
141
141
|
| Ast.UnaryOperand
|
|
142
142
|
| Ast.BinaryOperands
|
|
143
143
|
| Ast.Otherwise
|
|
@@ -181,7 +181,7 @@ export namespace Semantics {
|
|
|
181
181
|
/**
|
|
182
182
|
* Access the {@link ClassSemantics} of a constructor or decorator context.
|
|
183
183
|
*/
|
|
184
|
-
//
|
|
184
|
+
// oxlint-disable-next-line prefer-const
|
|
185
185
|
export let classOf = (_source: ClassSemantics.Source): ClassSemantics => {
|
|
186
186
|
// This should be replaced by ClassSemantics
|
|
187
187
|
throw new InternalError(`Class decoration lookup not installed`);
|
package/src/models/Children.ts
CHANGED
|
@@ -697,7 +697,7 @@ export function Children<T extends Model = Model>(
|
|
|
697
697
|
child = children[p as unknown as number];
|
|
698
698
|
}
|
|
699
699
|
|
|
700
|
-
//
|
|
700
|
+
// oxlint-disable-next-line @typescript-eslint/no-array-delete
|
|
701
701
|
delete children[p as unknown as number];
|
|
702
702
|
|
|
703
703
|
// Child may have been added elsewhere in the index so only delete if not still present
|