@matter/nodejs-shell 0.12.0 → 0.12.1
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/MatterNode.js +1 -1
- package/dist/cjs/app.js +1 -1
- package/dist/cjs/shell/Shell.js +1 -1
- package/dist/cjs/shell/cmd_cluster-attributes.js +1 -1
- package/dist/cjs/shell/cmd_cluster-commands.js +1 -1
- package/dist/cjs/shell/cmd_cluster-events.js +1 -1
- package/dist/cjs/shell/cmd_commission.js +1 -1
- package/dist/cjs/shell/cmd_config.js +1 -1
- package/dist/cjs/shell/cmd_discover.js +1 -1
- package/dist/cjs/shell/cmd_identify.js +1 -1
- package/dist/cjs/shell/cmd_nodes.js +1 -1
- package/dist/cjs/shell/cmd_session.js +1 -1
- package/dist/cjs/shell/cmd_subscribe.js +1 -1
- package/dist/cjs/shell/cmd_tlv.js +1 -1
- package/dist/cjs/util/CommandlineParser.js +1 -1
- package/dist/cjs/util/Json.js +1 -1
- package/dist/cjs/util/String.js +1 -1
- package/package.json +6 -6
- package/src/MatterNode.ts +1 -1
- package/src/app.ts +1 -1
- package/src/shell/Shell.ts +1 -1
- package/src/shell/cmd_cluster-attributes.ts +1 -1
- package/src/shell/cmd_cluster-commands.ts +1 -1
- package/src/shell/cmd_cluster-events.ts +1 -1
- package/src/shell/cmd_commission.ts +1 -1
- package/src/shell/cmd_config.ts +1 -1
- package/src/shell/cmd_discover.ts +1 -1
- package/src/shell/cmd_identify.ts +1 -1
- package/src/shell/cmd_nodes.ts +1 -1
- package/src/shell/cmd_session.ts +1 -1
- package/src/shell/cmd_subscribe.ts +1 -1
- package/src/shell/cmd_tlv.ts +1 -1
- package/src/util/CommandlineParser.ts +1 -1
- package/src/util/Json.ts +1 -1
- package/src/util/String.ts +1 -1
package/dist/cjs/MatterNode.js
CHANGED
|
@@ -29,7 +29,7 @@ var import_datatype = require("@project-chip/matter.js/datatype");
|
|
|
29
29
|
var import_node_path = require("node:path");
|
|
30
30
|
/**
|
|
31
31
|
* @license
|
|
32
|
-
* Copyright 2022-
|
|
32
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
33
33
|
* SPDX-License-Identifier: Apache-2.0
|
|
34
34
|
*/
|
|
35
35
|
const logger = import_general.Logger.get("Node");
|
package/dist/cjs/app.js
CHANGED
|
@@ -42,7 +42,7 @@ var import_MatterNode = require("./MatterNode.js");
|
|
|
42
42
|
var import_Shell = require("./shell/Shell");
|
|
43
43
|
/**
|
|
44
44
|
* @license
|
|
45
|
-
* Copyright 2022-
|
|
45
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
46
46
|
* SPDX-License-Identifier: Apache-2.0
|
|
47
47
|
*/
|
|
48
48
|
const PROMPT = "matter> ";
|
package/dist/cjs/shell/Shell.js
CHANGED
|
@@ -50,7 +50,7 @@ var import_cmd_subscribe = __toESM(require("./cmd_subscribe.js"));
|
|
|
50
50
|
var import_cmd_tlv = __toESM(require("./cmd_tlv"));
|
|
51
51
|
/**
|
|
52
52
|
* @license
|
|
53
|
-
* Copyright 2022-
|
|
53
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
54
54
|
* SPDX-License-Identifier: Apache-2.0
|
|
55
55
|
*/
|
|
56
56
|
const MAX_HISTORY_SIZE = 1e3;
|
|
@@ -30,7 +30,7 @@ var import_Json = require("../util/Json");
|
|
|
30
30
|
var import_String = require("../util/String");
|
|
31
31
|
/**
|
|
32
32
|
* @license
|
|
33
|
-
* Copyright 2022-
|
|
33
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
34
34
|
* SPDX-License-Identifier: Apache-2.0
|
|
35
35
|
*/
|
|
36
36
|
function generateAllAttributeHandlersForCluster(yargs, theNode) {
|
|
@@ -29,7 +29,7 @@ var import_Json = require("../util/Json");
|
|
|
29
29
|
var import_String = require("../util/String");
|
|
30
30
|
/**
|
|
31
31
|
* @license
|
|
32
|
-
* Copyright 2022-
|
|
32
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
33
33
|
* SPDX-License-Identifier: Apache-2.0
|
|
34
34
|
*/
|
|
35
35
|
function generateAllCommandHandlersForCluster(yargs, theNode) {
|
|
@@ -27,7 +27,7 @@ var import_datatype = require("@project-chip/matter.js/datatype");
|
|
|
27
27
|
var import_String = require("../util/String");
|
|
28
28
|
/**
|
|
29
29
|
* @license
|
|
30
|
-
* Copyright 2022-
|
|
30
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
31
31
|
* SPDX-License-Identifier: Apache-2.0
|
|
32
32
|
*/
|
|
33
33
|
function generateAllEventHandlersForCluster(yargs, theNode) {
|
|
@@ -28,7 +28,7 @@ var import_schema = require("@project-chip/matter.js/schema");
|
|
|
28
28
|
var import_cmd_nodes = require("./cmd_nodes");
|
|
29
29
|
/**
|
|
30
30
|
* @license
|
|
31
|
-
* Copyright 2022-
|
|
31
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
32
32
|
* SPDX-License-Identifier: Apache-2.0
|
|
33
33
|
*/
|
|
34
34
|
function commands(theNode) {
|
|
@@ -25,7 +25,7 @@ var import_general = require("@matter/general");
|
|
|
25
25
|
var import_app = require("../app");
|
|
26
26
|
/**
|
|
27
27
|
* @license
|
|
28
|
-
* Copyright 2022-
|
|
28
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
29
29
|
* SPDX-License-Identifier: Apache-2.0
|
|
30
30
|
*/
|
|
31
31
|
function commands(theNode) {
|
|
@@ -26,7 +26,7 @@ var import_datatype = require("@project-chip/matter.js/datatype");
|
|
|
26
26
|
var import_schema = require("@project-chip/matter.js/schema");
|
|
27
27
|
/**
|
|
28
28
|
* @license
|
|
29
|
-
* Copyright 2022-
|
|
29
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
30
30
|
* SPDX-License-Identifier: Apache-2.0
|
|
31
31
|
*/
|
|
32
32
|
function commands(theNode) {
|
|
@@ -24,7 +24,7 @@ module.exports = __toCommonJS(cmd_identify_exports);
|
|
|
24
24
|
var import_cluster = require("@project-chip/matter.js/cluster");
|
|
25
25
|
/**
|
|
26
26
|
* @license
|
|
27
|
-
* Copyright 2022-
|
|
27
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
28
28
|
* SPDX-License-Identifier: Apache-2.0
|
|
29
29
|
*/
|
|
30
30
|
function commands(theNode) {
|
|
@@ -27,7 +27,7 @@ var import_datatype = require("@project-chip/matter.js/datatype");
|
|
|
27
27
|
var import_device = require("@project-chip/matter.js/device");
|
|
28
28
|
/**
|
|
29
29
|
* @license
|
|
30
|
-
* Copyright 2022-
|
|
30
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
31
31
|
* SPDX-License-Identifier: Apache-2.0
|
|
32
32
|
*/
|
|
33
33
|
function createDiagnosticCallbacks() {
|
|
@@ -23,7 +23,7 @@ __export(cmd_session_exports, {
|
|
|
23
23
|
module.exports = __toCommonJS(cmd_session_exports);
|
|
24
24
|
/**
|
|
25
25
|
* @license
|
|
26
|
-
* Copyright 2022-
|
|
26
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
27
27
|
* SPDX-License-Identifier: Apache-2.0
|
|
28
28
|
*/
|
|
29
29
|
function commands(theNode) {
|
|
@@ -24,7 +24,7 @@ module.exports = __toCommonJS(cmd_subscribe_exports);
|
|
|
24
24
|
var import_general = require("@matter/general");
|
|
25
25
|
/**
|
|
26
26
|
* @license
|
|
27
|
-
* Copyright 2022-
|
|
27
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
28
28
|
* SPDX-License-Identifier: Apache-2.0
|
|
29
29
|
*/
|
|
30
30
|
function commands(theNode) {
|
|
@@ -25,7 +25,7 @@ var import_general = require("#general");
|
|
|
25
25
|
var import_types = require("#types");
|
|
26
26
|
/**
|
|
27
27
|
* @license
|
|
28
|
-
* Copyright 2022-
|
|
28
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
29
29
|
* SPDX-License-Identifier: Apache-2.0
|
|
30
30
|
*/
|
|
31
31
|
const logger = import_general.Logger.get("tlv");
|
|
@@ -25,7 +25,7 @@ module.exports = __toCommonJS(CommandlineParser_exports);
|
|
|
25
25
|
* Quote aware Command line parser
|
|
26
26
|
*
|
|
27
27
|
* @license
|
|
28
|
-
* Copyright 2022-
|
|
28
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
29
29
|
* SPDX-License-Identifier: Apache-2.0
|
|
30
30
|
*/
|
|
31
31
|
class StringReader {
|
package/dist/cjs/util/Json.js
CHANGED
|
@@ -26,7 +26,7 @@ var import_common = require("@project-chip/matter.js/common");
|
|
|
26
26
|
var import_String = require("./String");
|
|
27
27
|
/**
|
|
28
28
|
* @license
|
|
29
|
-
* Copyright 2022-
|
|
29
|
+
* Copyright 2022-2025 Matter.js Authors
|
|
30
30
|
* SPDX-License-Identifier: Apache-2.0
|
|
31
31
|
*/
|
|
32
32
|
function convertJsonDataWithModel(model, data) {
|
package/dist/cjs/util/String.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@matter/nodejs-shell",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"description": "Shell app for Matter controller",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"iot",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"#types": "@matter/types"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@matter/general": "0.12.
|
|
40
|
-
"@matter/nodejs": "0.12.
|
|
41
|
-
"@matter/nodejs-ble": "0.12.
|
|
42
|
-
"@matter/tools": "0.12.
|
|
43
|
-
"@project-chip/matter.js": "0.12.
|
|
39
|
+
"@matter/general": "0.12.1",
|
|
40
|
+
"@matter/nodejs": "0.12.1",
|
|
41
|
+
"@matter/nodejs-ble": "0.12.1",
|
|
42
|
+
"@matter/tools": "0.12.1",
|
|
43
|
+
"@project-chip/matter.js": "0.12.1",
|
|
44
44
|
"yargs": "^17.7.2"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
package/src/MatterNode.ts
CHANGED
package/src/app.ts
CHANGED
package/src/shell/Shell.ts
CHANGED
package/src/shell/cmd_config.ts
CHANGED
package/src/shell/cmd_nodes.ts
CHANGED
package/src/shell/cmd_session.ts
CHANGED
package/src/shell/cmd_tlv.ts
CHANGED
package/src/util/Json.ts
CHANGED