@openclaw/nextcloud-talk 2026.5.27 → 2026.5.28-beta.2
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/api.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as nextcloudTalkPlugin } from "./channel-
|
|
1
|
+
import { t as nextcloudTalkPlugin } from "./channel-BX1nv0xQ.js";
|
|
2
2
|
export { nextcloudTalkPlugin };
|
|
@@ -238,10 +238,10 @@ function normalizeUrlForMatch(value) {
|
|
|
238
238
|
}
|
|
239
239
|
}
|
|
240
240
|
function coerceFeatureMask(value) {
|
|
241
|
-
if (typeof value === "number" && Number.
|
|
242
|
-
if (typeof value === "string" && value.trim()) {
|
|
243
|
-
const parsed = Number.
|
|
244
|
-
return Number.
|
|
241
|
+
if (typeof value === "number" && Number.isSafeInteger(value) && value >= 0) return value;
|
|
242
|
+
if (typeof value === "string" && /^[+-]?\d+$/.test(value.trim())) {
|
|
243
|
+
const parsed = Number(value.trim());
|
|
244
|
+
return Number.isSafeInteger(parsed) && parsed >= 0 ? parsed : void 0;
|
|
245
245
|
}
|
|
246
246
|
}
|
|
247
247
|
function formatMissingResponseFeatureMessage(bot, features) {
|
|
@@ -521,10 +521,10 @@ function resolveRoomCacheKey(params) {
|
|
|
521
521
|
return `${params.accountId}:${params.roomToken}`;
|
|
522
522
|
}
|
|
523
523
|
function coerceRoomType(value) {
|
|
524
|
-
if (typeof value === "number" && Number.
|
|
525
|
-
if (typeof value === "string" && value.trim()) {
|
|
526
|
-
const parsed = Number.
|
|
527
|
-
return Number.
|
|
524
|
+
if (typeof value === "number" && Number.isSafeInteger(value) && value > 0) return value;
|
|
525
|
+
if (typeof value === "string" && /^[+-]?\d+$/.test(value.trim())) {
|
|
526
|
+
const parsed = Number(value.trim());
|
|
527
|
+
return Number.isSafeInteger(parsed) && parsed > 0 ? parsed : void 0;
|
|
528
528
|
}
|
|
529
529
|
}
|
|
530
530
|
function resolveRoomKindFromType(type) {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as nextcloudTalkPlugin } from "./channel-
|
|
1
|
+
import { t as nextcloudTalkPlugin } from "./channel-BX1nv0xQ.js";
|
|
2
2
|
export { nextcloudTalkPlugin };
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/nextcloud-talk",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.28-beta.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@openclaw/nextcloud-talk",
|
|
9
|
-
"version": "2026.5.
|
|
9
|
+
"version": "2026.5.28-beta.2",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"zod": "4.4.3"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"openclaw": ">=2026.5.
|
|
14
|
+
"openclaw": ">=2026.5.28-beta.2"
|
|
15
15
|
},
|
|
16
16
|
"peerDependenciesMeta": {
|
|
17
17
|
"openclaw": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/nextcloud-talk",
|
|
3
|
-
"version": "2026.5.
|
|
3
|
+
"version": "2026.5.28-beta.2",
|
|
4
4
|
"description": "OpenClaw Nextcloud Talk channel plugin for conversations.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"openclaw": ">=2026.5.
|
|
11
|
+
"openclaw": ">=2026.5.28-beta.2"
|
|
12
12
|
},
|
|
13
13
|
"peerDependenciesMeta": {
|
|
14
14
|
"openclaw": {
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"minHostVersion": ">=2026.4.10"
|
|
41
41
|
},
|
|
42
42
|
"compat": {
|
|
43
|
-
"pluginApi": ">=2026.5.
|
|
43
|
+
"pluginApi": ">=2026.5.28-beta.2"
|
|
44
44
|
},
|
|
45
45
|
"build": {
|
|
46
|
-
"openclawVersion": "2026.5.
|
|
46
|
+
"openclawVersion": "2026.5.28-beta.2"
|
|
47
47
|
},
|
|
48
48
|
"release": {
|
|
49
49
|
"publishToClawHub": true,
|