@openclaw-china/qqbot 2026.3.11 → 2026.3.12
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/index.d.ts +2 -1
- package/dist/index.js +687 -86
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -399,6 +399,7 @@ interface QQBotSendResult {
|
|
|
399
399
|
channel: "qqbot";
|
|
400
400
|
messageId?: string;
|
|
401
401
|
timestamp?: number | string;
|
|
402
|
+
refIdx?: string;
|
|
402
403
|
error?: string;
|
|
403
404
|
}
|
|
404
405
|
type QQChatType = "direct" | "group" | "channel";
|
|
@@ -438,7 +439,7 @@ declare const qqbotPlugin: {
|
|
|
438
439
|
order: 72;
|
|
439
440
|
};
|
|
440
441
|
capabilities: {
|
|
441
|
-
chatTypes: readonly ["direct", "channel"];
|
|
442
|
+
chatTypes: readonly ["direct", "group", "channel"];
|
|
442
443
|
media: boolean;
|
|
443
444
|
reactions: boolean;
|
|
444
445
|
threads: boolean;
|