@openclaw/nextcloud-talk 2026.5.28-beta.3 → 2026.5.28
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-z-KD96us.js";
|
|
2
2
|
export { nextcloudTalkPlugin };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { t as nextcloudTalkPlugin } from "./channel-
|
|
1
|
+
import { t as nextcloudTalkPlugin } from "./channel-z-KD96us.js";
|
|
2
2
|
export { nextcloudTalkPlugin };
|
|
@@ -12,6 +12,7 @@ import { normalizeLowercaseStringOrEmpty, normalizeOptionalLowercaseString, norm
|
|
|
12
12
|
import { buildSecretInputSchema, hasConfiguredSecretInput, normalizeResolvedSecretInputString } from "openclaw/plugin-sdk/secret-input";
|
|
13
13
|
import { createResolvedApproverActionAuthAdapter, resolveApprovalApprovers } from "openclaw/plugin-sdk/approval-auth-runtime";
|
|
14
14
|
import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";
|
|
15
|
+
import { parseStrictNonNegativeInteger, parseStrictPositiveInteger } from "openclaw/plugin-sdk/number-runtime";
|
|
15
16
|
import { readProviderJsonResponse } from "openclaw/plugin-sdk/provider-http";
|
|
16
17
|
import { createAccountStatusSink, createMessageReceiptFromOutboundResults, defineChannelMessageAdapter } from "openclaw/plugin-sdk/channel-outbound";
|
|
17
18
|
import { ssrfPolicyFromPrivateNetworkOptIn, ssrfPolicyFromPrivateNetworkOptIn as ssrfPolicyFromPrivateNetworkOptIn$1 } from "openclaw/plugin-sdk/ssrf-runtime";
|
|
@@ -239,10 +240,7 @@ function normalizeUrlForMatch(value) {
|
|
|
239
240
|
}
|
|
240
241
|
function coerceFeatureMask(value) {
|
|
241
242
|
if (typeof value === "number" && Number.isSafeInteger(value) && value >= 0) return value;
|
|
242
|
-
|
|
243
|
-
const parsed = Number(value.trim());
|
|
244
|
-
return Number.isSafeInteger(parsed) && parsed >= 0 ? parsed : void 0;
|
|
245
|
-
}
|
|
243
|
+
return parseStrictNonNegativeInteger(value);
|
|
246
244
|
}
|
|
247
245
|
function formatMissingResponseFeatureMessage(bot, features) {
|
|
248
246
|
const id = bot.id == null ? "unknown" : String(bot.id);
|
|
@@ -522,10 +520,7 @@ function resolveRoomCacheKey(params) {
|
|
|
522
520
|
}
|
|
523
521
|
function coerceRoomType(value) {
|
|
524
522
|
if (typeof value === "number" && Number.isSafeInteger(value) && value > 0) return value;
|
|
525
|
-
|
|
526
|
-
const parsed = Number(value.trim());
|
|
527
|
-
return Number.isSafeInteger(parsed) && parsed > 0 ? parsed : void 0;
|
|
528
|
-
}
|
|
523
|
+
return parseStrictPositiveInteger(value);
|
|
529
524
|
}
|
|
530
525
|
function resolveRoomKindFromType(type) {
|
|
531
526
|
if (!type) return;
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/nextcloud-talk",
|
|
3
|
-
"version": "2026.5.28
|
|
3
|
+
"version": "2026.5.28",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@openclaw/nextcloud-talk",
|
|
9
|
-
"version": "2026.5.28
|
|
9
|
+
"version": "2026.5.28",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"zod": "4.4.3"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"openclaw": ">=2026.5.28
|
|
14
|
+
"openclaw": ">=2026.5.28"
|
|
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.28
|
|
3
|
+
"version": "2026.5.28",
|
|
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.28
|
|
11
|
+
"openclaw": ">=2026.5.28"
|
|
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.28
|
|
43
|
+
"pluginApi": ">=2026.5.28"
|
|
44
44
|
},
|
|
45
45
|
"build": {
|
|
46
|
-
"openclawVersion": "2026.5.28
|
|
46
|
+
"openclawVersion": "2026.5.28"
|
|
47
47
|
},
|
|
48
48
|
"release": {
|
|
49
49
|
"publishToClawHub": true,
|