@openclaw-china/qqbot 2026.3.4-2 → 2026.3.5
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 +11 -8
- package/dist/index.js +417 -118
- package/dist/index.js.map +1 -1
- package/openclaw.plugin.json +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -353,7 +353,7 @@ declare const qqbotPlugin: {
|
|
|
353
353
|
type: string;
|
|
354
354
|
};
|
|
355
355
|
appId: {
|
|
356
|
-
type: string;
|
|
356
|
+
type: string[];
|
|
357
357
|
};
|
|
358
358
|
clientSecret: {
|
|
359
359
|
type: string;
|
|
@@ -366,7 +366,7 @@ declare const qqbotPlugin: {
|
|
|
366
366
|
type: string;
|
|
367
367
|
};
|
|
368
368
|
appId: {
|
|
369
|
-
type: string;
|
|
369
|
+
type: string[];
|
|
370
370
|
};
|
|
371
371
|
secretId: {
|
|
372
372
|
type: string;
|
|
@@ -432,7 +432,7 @@ declare const qqbotPlugin: {
|
|
|
432
432
|
type: string;
|
|
433
433
|
};
|
|
434
434
|
appId: {
|
|
435
|
-
type: string;
|
|
435
|
+
type: string[];
|
|
436
436
|
};
|
|
437
437
|
clientSecret: {
|
|
438
438
|
type: string;
|
|
@@ -445,7 +445,7 @@ declare const qqbotPlugin: {
|
|
|
445
445
|
type: string;
|
|
446
446
|
};
|
|
447
447
|
appId: {
|
|
448
|
-
type: string;
|
|
448
|
+
type: string[];
|
|
449
449
|
};
|
|
450
450
|
secretId: {
|
|
451
451
|
type: string;
|
|
@@ -559,6 +559,7 @@ declare const qqbotPlugin: {
|
|
|
559
559
|
to: string;
|
|
560
560
|
text: string;
|
|
561
561
|
replyToId?: string;
|
|
562
|
+
replyEventId?: string;
|
|
562
563
|
accountId?: string;
|
|
563
564
|
}) => Promise<QQBotSendResult>;
|
|
564
565
|
sendMedia: (params: {
|
|
@@ -567,12 +568,14 @@ declare const qqbotPlugin: {
|
|
|
567
568
|
text?: string;
|
|
568
569
|
mediaUrl?: string;
|
|
569
570
|
replyToId?: string;
|
|
571
|
+
replyEventId?: string;
|
|
570
572
|
accountId?: string;
|
|
571
573
|
}) => Promise<QQBotSendResult>;
|
|
572
574
|
sendTyping: (params: {
|
|
573
575
|
cfg: PluginConfig;
|
|
574
576
|
to: string;
|
|
575
577
|
replyToId?: string;
|
|
578
|
+
replyEventId?: string;
|
|
576
579
|
inputSecond?: number;
|
|
577
580
|
accountId?: string;
|
|
578
581
|
}) => Promise<QQBotSendResult>;
|
|
@@ -756,7 +759,7 @@ declare const plugin: {
|
|
|
756
759
|
type: string;
|
|
757
760
|
};
|
|
758
761
|
appId: {
|
|
759
|
-
type: string;
|
|
762
|
+
type: string[];
|
|
760
763
|
};
|
|
761
764
|
clientSecret: {
|
|
762
765
|
type: string;
|
|
@@ -769,7 +772,7 @@ declare const plugin: {
|
|
|
769
772
|
type: string;
|
|
770
773
|
};
|
|
771
774
|
appId: {
|
|
772
|
-
type: string;
|
|
775
|
+
type: string[];
|
|
773
776
|
};
|
|
774
777
|
secretId: {
|
|
775
778
|
type: string;
|
|
@@ -835,7 +838,7 @@ declare const plugin: {
|
|
|
835
838
|
type: string;
|
|
836
839
|
};
|
|
837
840
|
appId: {
|
|
838
|
-
type: string;
|
|
841
|
+
type: string[];
|
|
839
842
|
};
|
|
840
843
|
clientSecret: {
|
|
841
844
|
type: string;
|
|
@@ -848,7 +851,7 @@ declare const plugin: {
|
|
|
848
851
|
type: string;
|
|
849
852
|
};
|
|
850
853
|
appId: {
|
|
851
|
-
type: string;
|
|
854
|
+
type: string[];
|
|
852
855
|
};
|
|
853
856
|
secretId: {
|
|
854
857
|
type: string;
|