@matter/node 0.15.3 → 0.16.0-alpha.0-20250802-1af103e3d
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/storage/EndpointStore.d.ts +2 -2
- package/dist/cjs/storage/EndpointStore.d.ts.map +1 -1
- package/dist/cjs/storage/NodeStore.d.ts +4 -3
- package/dist/cjs/storage/NodeStore.d.ts.map +1 -1
- package/dist/cjs/storage/NodeStore.js +8 -0
- package/dist/cjs/storage/NodeStore.js.map +1 -1
- package/dist/cjs/storage/client/ClientNodeStore.d.ts +1 -1
- package/dist/esm/storage/EndpointStore.d.ts +2 -2
- package/dist/esm/storage/EndpointStore.d.ts.map +1 -1
- package/dist/esm/storage/NodeStore.d.ts +4 -3
- package/dist/esm/storage/NodeStore.d.ts.map +1 -1
- package/dist/esm/storage/NodeStore.js +8 -0
- package/dist/esm/storage/NodeStore.js.map +1 -1
- package/dist/esm/storage/client/ClientNodeStore.d.ts +1 -1
- package/package.json +7 -7
- package/src/storage/NodeStore.ts +10 -1
|
@@ -42,7 +42,7 @@ export declare class EndpointStore {
|
|
|
42
42
|
/**
|
|
43
43
|
* Remove all persisted information for the {@link Endpoint}
|
|
44
44
|
*/
|
|
45
|
-
erase():
|
|
46
|
-
protected get storage(): StorageContext
|
|
45
|
+
erase(): import("#general").MaybePromise<void>;
|
|
46
|
+
protected get storage(): StorageContext;
|
|
47
47
|
}
|
|
48
48
|
//# sourceMappingURL=EndpointStore.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EndpointStore.d.ts","sourceRoot":"","sources":["../../../src/storage/EndpointStore.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,cAAc,EAAyB,MAAM,UAAU,CAAC;AACjE,OAAO,EAAE,GAAG,EAAE,MAAM,WAAW,CAAC;AAEhC;;GAEG;AACH,qBAAa,aAAa;;IACtB,SAAS,CAAC,aAAa,0BAAiC;gBAM5C,OAAO,EAAE,cAAc;IAInC;;OAEG;IACH,IAAI,EAAE,WAEL;IAED;;;OAGG;IACH,SAAS,CAAC,oBAAoB,CAAC,UAAU,EAAE,MAAM;IAQjD;;;;OAIG;IACG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,GAAG,GAAG,CAAC,MAAM,CAAC;IAkCxD;;OAEG;IACH,QAAQ;IAIR;;OAEG;IACH,IAAI,cAAc,gBAEjB;IAED;;OAEG;IACG,IAAI;IAiBV;;OAEG;IACH,KAAK;IAIL,SAAS,KAAK,OAAO,
|
|
1
|
+
{"version":3,"file":"EndpointStore.d.ts","sourceRoot":"","sources":["../../../src/storage/EndpointStore.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,cAAc,EAAyB,MAAM,UAAU,CAAC;AACjE,OAAO,EAAE,GAAG,EAAE,MAAM,WAAW,CAAC;AAEhC;;GAEG;AACH,qBAAa,aAAa;;IACtB,SAAS,CAAC,aAAa,0BAAiC;gBAM5C,OAAO,EAAE,cAAc;IAInC;;OAEG;IACH,IAAI,EAAE,WAEL;IAED;;;OAGG;IACH,SAAS,CAAC,oBAAoB,CAAC,UAAU,EAAE,MAAM;IAQjD;;;;OAIG;IACG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,GAAG,GAAG,CAAC,MAAM,CAAC;IAkCxD;;OAEG;IACH,QAAQ;IAIR;;OAEG;IACH,IAAI,cAAc,gBAEjB;IAED;;OAEG;IACG,IAAI;IAiBV;;OAEG;IACH,KAAK;IAIL,SAAS,KAAK,OAAO,mBAEpB;CACJ"}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
6
|
import type { Endpoint } from "#endpoint/Endpoint.js";
|
|
7
|
-
import { Construction, MaybePromise, StorageContextFactory } from "#general";
|
|
7
|
+
import { Construction, MaybePromise, StorageContext, StorageContextFactory } from "#general";
|
|
8
8
|
import { EndpointStore } from "./EndpointStore.js";
|
|
9
9
|
/**
|
|
10
10
|
* Non-volatile state management for a {@link Node}.
|
|
@@ -14,6 +14,7 @@ import { EndpointStore } from "./EndpointStore.js";
|
|
|
14
14
|
*/
|
|
15
15
|
export declare abstract class NodeStore {
|
|
16
16
|
#private;
|
|
17
|
+
get bdxStore(): StorageContext;
|
|
17
18
|
get construction(): Construction<NodeStore>;
|
|
18
19
|
constructor(storageFactory: StorageContextFactory);
|
|
19
20
|
toString(): string;
|
|
@@ -21,7 +22,7 @@ export declare abstract class NodeStore {
|
|
|
21
22
|
abstract storeForEndpoint(endpoint: Endpoint): EndpointStore;
|
|
22
23
|
abstract erase(): MaybePromise<void>;
|
|
23
24
|
protected abstract load(): MaybePromise<void>;
|
|
24
|
-
protected createStorageContext(name: string):
|
|
25
|
-
protected get storageFactory(): StorageContextFactory
|
|
25
|
+
protected createStorageContext(name: string): StorageContext;
|
|
26
|
+
protected get storageFactory(): StorageContextFactory;
|
|
26
27
|
}
|
|
27
28
|
//# sourceMappingURL=NodeStore.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NodeStore.d.ts","sourceRoot":"","sources":["../../../src/storage/NodeStore.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"NodeStore.d.ts","sourceRoot":"","sources":["../../../src/storage/NodeStore.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,cAAc,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAE7F,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAEnD;;;;;GAKG;AACH,8BAAsB,SAAS;;IAK3B,IAAI,QAAQ,IAAI,cAAc,CAM7B;IAED,IAAI,YAAY,4BAEf;gBAEW,cAAc,EAAE,qBAAqB;IAKjD,QAAQ;IAIR,CAAC,YAAY,CAAC,SAAS,CAAC;IAIxB,QAAQ,CAAC,gBAAgB,CAAC,QAAQ,EAAE,QAAQ,GAAG,aAAa;IAE5D,QAAQ,CAAC,KAAK,IAAI,YAAY,CAAC,IAAI,CAAC;IAEpC,SAAS,CAAC,QAAQ,CAAC,IAAI,IAAI,YAAY,CAAC,IAAI,CAAC;IAE7C,SAAS,CAAC,oBAAoB,CAAC,IAAI,EAAE,MAAM;IAI3C,SAAS,KAAK,cAAc,0BAE3B;CACJ"}
|
|
@@ -30,6 +30,14 @@ var import_general = require("#general");
|
|
|
30
30
|
class NodeStore {
|
|
31
31
|
#storageFactory;
|
|
32
32
|
#construction;
|
|
33
|
+
#bdxStore;
|
|
34
|
+
get bdxStore() {
|
|
35
|
+
this.construction.assert("BDX storage context");
|
|
36
|
+
if (!this.#bdxStore) {
|
|
37
|
+
this.#bdxStore = this.createStorageContext("bdx");
|
|
38
|
+
}
|
|
39
|
+
return this.#bdxStore;
|
|
40
|
+
}
|
|
33
41
|
get construction() {
|
|
34
42
|
return this.#construction;
|
|
35
43
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/storage/NodeStore.ts"],
|
|
4
|
-
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA,
|
|
4
|
+
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA,qBAAkF;AAPlF;AAAA;AAAA;AAAA;AAAA;AAiBO,MAAe,UAAU;AAAA,EAC5B;AAAA,EACA;AAAA,EACA;AAAA,EAEA,IAAI,WAA2B;AAC3B,SAAK,aAAa,OAAO,qBAAqB;AAC9C,QAAI,CAAC,KAAK,WAAW;AACjB,WAAK,YAAY,KAAK,qBAAqB,KAAK;AAAA,IACpD;AACA,WAAO,KAAK;AAAA,EAChB;AAAA,EAEA,IAAI,eAAe;AACf,WAAO,KAAK;AAAA,EAChB;AAAA,EAEA,YAAY,gBAAuC;AAC/C,SAAK,kBAAkB;AACvB,SAAK,oBAAgB,6BAAa,IAAI;AAAA,EAC1C;AAAA,EAEA,WAAW;AACP,WAAO;AAAA,EACX;AAAA,EAEA,CAAC,4BAAa,SAAS,IAAI;AACvB,WAAO,KAAK,KAAK;AAAA,EACrB;AAAA,EAQU,qBAAqB,MAAc;AACzC,WAAO,KAAK,gBAAgB,cAAc,IAAI;AAAA,EAClD;AAAA,EAEA,IAAc,iBAAiB;AAC3B,WAAO,KAAK;AAAA,EAChB;AACJ;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
|
@@ -19,7 +19,7 @@ export declare class ClientNodeStore extends NodeStore {
|
|
|
19
19
|
get write(): RemoteWriter;
|
|
20
20
|
set write(write: RemoteWriter);
|
|
21
21
|
get endpointStores(): MapIterator<ClientEndpointStore>;
|
|
22
|
-
erase():
|
|
22
|
+
erase(): import("#general").MaybePromise<void> | undefined;
|
|
23
23
|
storeForEndpoint(endpoint: Endpoint): ClientEndpointStore;
|
|
24
24
|
protected load(): Promise<void>;
|
|
25
25
|
}
|
|
@@ -42,7 +42,7 @@ export declare class EndpointStore {
|
|
|
42
42
|
/**
|
|
43
43
|
* Remove all persisted information for the {@link Endpoint}
|
|
44
44
|
*/
|
|
45
|
-
erase():
|
|
46
|
-
protected get storage(): StorageContext
|
|
45
|
+
erase(): import("#general").MaybePromise<void>;
|
|
46
|
+
protected get storage(): StorageContext;
|
|
47
47
|
}
|
|
48
48
|
//# sourceMappingURL=EndpointStore.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EndpointStore.d.ts","sourceRoot":"","sources":["../../../src/storage/EndpointStore.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,cAAc,EAAyB,MAAM,UAAU,CAAC;AACjE,OAAO,EAAE,GAAG,EAAE,MAAM,WAAW,CAAC;AAEhC;;GAEG;AACH,qBAAa,aAAa;;IACtB,SAAS,CAAC,aAAa,0BAAiC;gBAM5C,OAAO,EAAE,cAAc;IAInC;;OAEG;IACH,IAAI,EAAE,WAEL;IAED;;;OAGG;IACH,SAAS,CAAC,oBAAoB,CAAC,UAAU,EAAE,MAAM;IAQjD;;;;OAIG;IACG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,GAAG,GAAG,CAAC,MAAM,CAAC;IAkCxD;;OAEG;IACH,QAAQ;IAIR;;OAEG;IACH,IAAI,cAAc,gBAEjB;IAED;;OAEG;IACG,IAAI;IAiBV;;OAEG;IACH,KAAK;IAIL,SAAS,KAAK,OAAO,
|
|
1
|
+
{"version":3,"file":"EndpointStore.d.ts","sourceRoot":"","sources":["../../../src/storage/EndpointStore.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,cAAc,EAAyB,MAAM,UAAU,CAAC;AACjE,OAAO,EAAE,GAAG,EAAE,MAAM,WAAW,CAAC;AAEhC;;GAEG;AACH,qBAAa,aAAa;;IACtB,SAAS,CAAC,aAAa,0BAAiC;gBAM5C,OAAO,EAAE,cAAc;IAInC;;OAEG;IACH,IAAI,EAAE,WAEL;IAED;;;OAGG;IACH,SAAS,CAAC,oBAAoB,CAAC,UAAU,EAAE,MAAM;IAQjD;;;;OAIG;IACG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,GAAG,GAAG,CAAC,MAAM,CAAC;IAkCxD;;OAEG;IACH,QAAQ;IAIR;;OAEG;IACH,IAAI,cAAc,gBAEjB;IAED;;OAEG;IACG,IAAI;IAiBV;;OAEG;IACH,KAAK;IAIL,SAAS,KAAK,OAAO,mBAEpB;CACJ"}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
6
|
import type { Endpoint } from "#endpoint/Endpoint.js";
|
|
7
|
-
import { Construction, MaybePromise, StorageContextFactory } from "#general";
|
|
7
|
+
import { Construction, MaybePromise, StorageContext, StorageContextFactory } from "#general";
|
|
8
8
|
import { EndpointStore } from "./EndpointStore.js";
|
|
9
9
|
/**
|
|
10
10
|
* Non-volatile state management for a {@link Node}.
|
|
@@ -14,6 +14,7 @@ import { EndpointStore } from "./EndpointStore.js";
|
|
|
14
14
|
*/
|
|
15
15
|
export declare abstract class NodeStore {
|
|
16
16
|
#private;
|
|
17
|
+
get bdxStore(): StorageContext;
|
|
17
18
|
get construction(): Construction<NodeStore>;
|
|
18
19
|
constructor(storageFactory: StorageContextFactory);
|
|
19
20
|
toString(): string;
|
|
@@ -21,7 +22,7 @@ export declare abstract class NodeStore {
|
|
|
21
22
|
abstract storeForEndpoint(endpoint: Endpoint): EndpointStore;
|
|
22
23
|
abstract erase(): MaybePromise<void>;
|
|
23
24
|
protected abstract load(): MaybePromise<void>;
|
|
24
|
-
protected createStorageContext(name: string):
|
|
25
|
-
protected get storageFactory(): StorageContextFactory
|
|
25
|
+
protected createStorageContext(name: string): StorageContext;
|
|
26
|
+
protected get storageFactory(): StorageContextFactory;
|
|
26
27
|
}
|
|
27
28
|
//# sourceMappingURL=NodeStore.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NodeStore.d.ts","sourceRoot":"","sources":["../../../src/storage/NodeStore.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"NodeStore.d.ts","sourceRoot":"","sources":["../../../src/storage/NodeStore.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,YAAY,EAAE,YAAY,EAAE,cAAc,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAE7F,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AAEnD;;;;;GAKG;AACH,8BAAsB,SAAS;;IAK3B,IAAI,QAAQ,IAAI,cAAc,CAM7B;IAED,IAAI,YAAY,4BAEf;gBAEW,cAAc,EAAE,qBAAqB;IAKjD,QAAQ;IAIR,CAAC,YAAY,CAAC,SAAS,CAAC;IAIxB,QAAQ,CAAC,gBAAgB,CAAC,QAAQ,EAAE,QAAQ,GAAG,aAAa;IAE5D,QAAQ,CAAC,KAAK,IAAI,YAAY,CAAC,IAAI,CAAC;IAEpC,SAAS,CAAC,QAAQ,CAAC,IAAI,IAAI,YAAY,CAAC,IAAI,CAAC;IAE7C,SAAS,CAAC,oBAAoB,CAAC,IAAI,EAAE,MAAM;IAI3C,SAAS,KAAK,cAAc,0BAE3B;CACJ"}
|
|
@@ -7,6 +7,14 @@ import { Construction } from "#general";
|
|
|
7
7
|
class NodeStore {
|
|
8
8
|
#storageFactory;
|
|
9
9
|
#construction;
|
|
10
|
+
#bdxStore;
|
|
11
|
+
get bdxStore() {
|
|
12
|
+
this.construction.assert("BDX storage context");
|
|
13
|
+
if (!this.#bdxStore) {
|
|
14
|
+
this.#bdxStore = this.createStorageContext("bdx");
|
|
15
|
+
}
|
|
16
|
+
return this.#bdxStore;
|
|
17
|
+
}
|
|
10
18
|
get construction() {
|
|
11
19
|
return this.#construction;
|
|
12
20
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../src/storage/NodeStore.ts"],
|
|
4
|
-
"mappings": "AAAA;AAAA;AAAA;AAAA;AAAA;AAOA,SAAS,
|
|
4
|
+
"mappings": "AAAA;AAAA;AAAA;AAAA;AAAA;AAOA,SAAS,oBAAyE;AAU3E,MAAe,UAAU;AAAA,EAC5B;AAAA,EACA;AAAA,EACA;AAAA,EAEA,IAAI,WAA2B;AAC3B,SAAK,aAAa,OAAO,qBAAqB;AAC9C,QAAI,CAAC,KAAK,WAAW;AACjB,WAAK,YAAY,KAAK,qBAAqB,KAAK;AAAA,IACpD;AACA,WAAO,KAAK;AAAA,EAChB;AAAA,EAEA,IAAI,eAAe;AACf,WAAO,KAAK;AAAA,EAChB;AAAA,EAEA,YAAY,gBAAuC;AAC/C,SAAK,kBAAkB;AACvB,SAAK,gBAAgB,aAAa,IAAI;AAAA,EAC1C;AAAA,EAEA,WAAW;AACP,WAAO;AAAA,EACX;AAAA,EAEA,CAAC,aAAa,SAAS,IAAI;AACvB,WAAO,KAAK,KAAK;AAAA,EACrB;AAAA,EAQU,qBAAqB,MAAc;AACzC,WAAO,KAAK,gBAAgB,cAAc,IAAI;AAAA,EAClD;AAAA,EAEA,IAAc,iBAAiB;AAC3B,WAAO,KAAK;AAAA,EAChB;AACJ;",
|
|
5
5
|
"names": []
|
|
6
6
|
}
|
|
@@ -19,7 +19,7 @@ export declare class ClientNodeStore extends NodeStore {
|
|
|
19
19
|
get write(): RemoteWriter;
|
|
20
20
|
set write(write: RemoteWriter);
|
|
21
21
|
get endpointStores(): MapIterator<ClientEndpointStore>;
|
|
22
|
-
erase():
|
|
22
|
+
erase(): import("#general").MaybePromise<void> | undefined;
|
|
23
23
|
storeForEndpoint(endpoint: Endpoint): ClientEndpointStore;
|
|
24
24
|
protected load(): Promise<void>;
|
|
25
25
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matter/node",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0-alpha.0-20250802-1af103e3d",
|
|
4
4
|
"description": "API for building Matter nodes",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"iot",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"#*": "./src/*"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@matter/general": "0.
|
|
46
|
-
"@matter/model": "0.
|
|
47
|
-
"@matter/types": "0.
|
|
48
|
-
"@matter/protocol": "0.
|
|
45
|
+
"@matter/general": "0.16.0-alpha.0-20250802-1af103e3d",
|
|
46
|
+
"@matter/model": "0.16.0-alpha.0-20250802-1af103e3d",
|
|
47
|
+
"@matter/types": "0.16.0-alpha.0-20250802-1af103e3d",
|
|
48
|
+
"@matter/protocol": "0.16.0-alpha.0-20250802-1af103e3d"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@matter/tools": "0.
|
|
52
|
-
"@matter/testing": "0.
|
|
51
|
+
"@matter/tools": "0.16.0-alpha.0-20250802-1af103e3d",
|
|
52
|
+
"@matter/testing": "0.16.0-alpha.0-20250802-1af103e3d"
|
|
53
53
|
},
|
|
54
54
|
"files": [
|
|
55
55
|
"dist/**/*",
|
package/src/storage/NodeStore.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import type { Endpoint } from "#endpoint/Endpoint.js";
|
|
8
|
-
import { Construction, MaybePromise, StorageContextFactory } from "#general";
|
|
8
|
+
import { Construction, MaybePromise, StorageContext, StorageContextFactory } from "#general";
|
|
9
9
|
import type { Node } from "../node/Node.js";
|
|
10
10
|
import { EndpointStore } from "./EndpointStore.js";
|
|
11
11
|
|
|
@@ -18,6 +18,15 @@ import { EndpointStore } from "./EndpointStore.js";
|
|
|
18
18
|
export abstract class NodeStore {
|
|
19
19
|
#storageFactory: StorageContextFactory;
|
|
20
20
|
#construction: Construction<NodeStore>;
|
|
21
|
+
#bdxStore?: StorageContext;
|
|
22
|
+
|
|
23
|
+
get bdxStore(): StorageContext {
|
|
24
|
+
this.construction.assert("BDX storage context");
|
|
25
|
+
if (!this.#bdxStore) {
|
|
26
|
+
this.#bdxStore = this.createStorageContext("bdx");
|
|
27
|
+
}
|
|
28
|
+
return this.#bdxStore;
|
|
29
|
+
}
|
|
21
30
|
|
|
22
31
|
get construction() {
|
|
23
32
|
return this.#construction;
|