@openclaw/matrix 2026.5.25-beta.1 → 2026.5.26-beta.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.
@@ -154,6 +154,7 @@ function configureCliLogMode(verbose) {
154
154
  function parseOptionalInt(value, fieldName) {
155
155
  const trimmed = value?.trim();
156
156
  if (!trimmed) return;
157
+ if (!/^-?\d+$/.test(trimmed)) throw new Error(`${fieldName} must be an integer`);
157
158
  const parsed = Number.parseInt(trimmed, 10);
158
159
  if (!Number.isFinite(parsed)) throw new Error(`${fieldName} must be an integer`);
159
160
  return parsed;
@@ -2,7 +2,7 @@ import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
2
2
  //#region extensions/matrix/src/cli-metadata.ts
3
3
  function registerMatrixCliMetadata(api) {
4
4
  api.registerCli(async ({ program }) => {
5
- const { registerMatrixCli } = await import("./cli-Dy8NAJro.js");
5
+ const { registerMatrixCli } = await import("./cli-MPGdj4tQ.js");
6
6
  registerMatrixCli({ program });
7
7
  }, { descriptors: [{
8
8
  name: "matrix",
@@ -1,2 +1,2 @@
1
- import { n as registerMatrixCliMetadata, t as cli_metadata_default } from "./cli-metadata-CoOIrCvz.js";
1
+ import { n as registerMatrixCliMetadata, t as cli_metadata_default } from "./cli-metadata-DnXlx9Nh.js";
2
2
  export { cli_metadata_default as default, registerMatrixCliMetadata };
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { n as registerMatrixCliMetadata } from "./cli-metadata-CoOIrCvz.js";
1
+ import { n as registerMatrixCliMetadata } from "./cli-metadata-DnXlx9Nh.js";
2
2
  import { t as registerMatrixSubagentHooks } from "./subagent-hooks-api-bedE4GYl.js";
3
3
  import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
4
4
  //#region extensions/matrix/index.ts
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@openclaw/matrix",
3
- "version": "2026.5.25-beta.1",
3
+ "version": "2026.5.26-beta.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@openclaw/matrix",
9
- "version": "2026.5.25-beta.1",
9
+ "version": "2026.5.26-beta.1",
10
10
  "dependencies": {
11
11
  "@matrix-org/matrix-sdk-crypto-nodejs": "0.4.0",
12
12
  "@matrix-org/matrix-sdk-crypto-wasm": "18.3.0",
@@ -18,7 +18,7 @@
18
18
  "zod": "4.4.3"
19
19
  },
20
20
  "peerDependencies": {
21
- "openclaw": ">=2026.5.25-beta.1"
21
+ "openclaw": ">=2026.5.26-beta.1"
22
22
  },
23
23
  "peerDependenciesMeta": {
24
24
  "openclaw": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/matrix",
3
- "version": "2026.5.25-beta.1",
3
+ "version": "2026.5.26-beta.1",
4
4
  "description": "OpenClaw Matrix channel plugin",
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,7 +18,7 @@
18
18
  "zod": "4.4.3"
19
19
  },
20
20
  "peerDependencies": {
21
- "openclaw": ">=2026.5.25-beta.1"
21
+ "openclaw": ">=2026.5.26-beta.1"
22
22
  },
23
23
  "peerDependenciesMeta": {
24
24
  "openclaw": {
@@ -83,10 +83,10 @@
83
83
  "allowInvalidConfigRecovery": true
84
84
  },
85
85
  "compat": {
86
- "pluginApi": ">=2026.5.25-beta.1"
86
+ "pluginApi": ">=2026.5.26-beta.1"
87
87
  },
88
88
  "build": {
89
- "openclawVersion": "2026.5.25-beta.1"
89
+ "openclawVersion": "2026.5.26-beta.1"
90
90
  },
91
91
  "release": {
92
92
  "publishToClawHub": true,