palz-connector 1.3.8 → 1.4.0
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/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/src/bot.ts +4 -1
- package/src/types.ts +2 -0
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
package/src/bot.ts
CHANGED
|
@@ -542,6 +542,9 @@ async function _dispatchPalzMessageInner(params: HandlePalzMessageParams): Promi
|
|
|
542
542
|
if (msg.group_kind != null) {
|
|
543
543
|
untrustedContext.push(`group_kind: ${msg.group_kind}`);
|
|
544
544
|
}
|
|
545
|
+
if (msg.resource_id != null) {
|
|
546
|
+
untrustedContext.push(`resource_id: ${msg.resource_id}`);
|
|
547
|
+
}
|
|
545
548
|
if (groupId) {
|
|
546
549
|
untrustedContext.push(`group_id: ${groupId}`);
|
|
547
550
|
}
|
|
@@ -555,7 +558,7 @@ async function _dispatchPalzMessageInner(params: HandlePalzMessageParams): Promi
|
|
|
555
558
|
log(`${tag}: ${step6bCtx}`);
|
|
556
559
|
span?.addEvent(step6bCtx);
|
|
557
560
|
|
|
558
|
-
const showProcess =
|
|
561
|
+
const showProcess = config.showProcess === true;
|
|
559
562
|
|
|
560
563
|
const ctx = core.channel.reply.finalizeInboundContext({
|
|
561
564
|
Body: combinedBody,
|
package/src/types.ts
CHANGED