@lih-x-x/kmr 1.0.39 → 1.0.40
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/cli.js +3 -3
- package/dist/index.js +10 -17
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -6,9 +6,9 @@ async function checkUpdate() {
|
|
|
6
6
|
try {
|
|
7
7
|
const res = await fetch(`https://registry.npmjs.org/${"@lih-x-x/kmr"}/latest`, { signal: AbortSignal.timeout(3e3) });
|
|
8
8
|
const data = await res.json();
|
|
9
|
-
if (data.version && data.version !== "1.0.
|
|
9
|
+
if (data.version && data.version !== "1.0.40") {
|
|
10
10
|
console.log(`
|
|
11
|
-
\u2B06\uFE0F \u65B0\u7248\u672C\u53EF\u7528: ${"1.0.
|
|
11
|
+
\u2B06\uFE0F \u65B0\u7248\u672C\u53EF\u7528: ${"1.0.40"} \u2192 ${data.version}`);
|
|
12
12
|
console.log(` \u8FD0\u884C npm install -g ${"@lih-x-x/kmr"} \u66F4\u65B0
|
|
13
13
|
`);
|
|
14
14
|
}
|
|
@@ -55,7 +55,7 @@ KMR\uFF08Key Meetings Record\uFF09\u2014 \u4F1A\u8BAE\u6316\u6398\u673A
|
|
|
55
55
|
kmr --help \u663E\u793A\u5E2E\u52A9
|
|
56
56
|
`);
|
|
57
57
|
} else if (command === "--version" || command === "-v") {
|
|
58
|
-
console.log("1.0.
|
|
58
|
+
console.log("1.0.40");
|
|
59
59
|
} else if (command === "list") {
|
|
60
60
|
const { loadConfig } = await import("./config-L2SVVMAR.js");
|
|
61
61
|
const { JsonStore } = await import("./jsonStore-AL73KEUG.js");
|
package/dist/index.js
CHANGED
|
@@ -260,31 +260,24 @@ var Messenger = class {
|
|
|
260
260
|
await this.replyText(messageId, lines.join("\n"));
|
|
261
261
|
}
|
|
262
262
|
/**
|
|
263
|
-
* 给消息添加表情回应(Reaction
|
|
263
|
+
* 给消息添加表情回应(Reaction),返回 reaction_id
|
|
264
264
|
*/
|
|
265
265
|
async addReaction(messageId, emojiType) {
|
|
266
|
-
await this.client.im.messageReaction.create({
|
|
266
|
+
const res = await this.client.im.messageReaction.create({
|
|
267
267
|
path: { message_id: messageId },
|
|
268
268
|
data: { reaction_type: { emoji_type: emojiType } }
|
|
269
269
|
});
|
|
270
|
+
return res.data?.reaction_id || "";
|
|
270
271
|
}
|
|
271
272
|
/**
|
|
272
|
-
*
|
|
273
|
+
* 删除指定的表情回应
|
|
273
274
|
*/
|
|
274
|
-
async removeReaction(messageId,
|
|
275
|
+
async removeReaction(messageId, reactionId) {
|
|
275
276
|
try {
|
|
276
|
-
|
|
277
|
-
|
|
277
|
+
if (!reactionId) return;
|
|
278
|
+
await this.client.im.messageReaction.delete({
|
|
279
|
+
path: { message_id: messageId, reaction_id: reactionId }
|
|
278
280
|
});
|
|
279
|
-
const reactions = res.data?.reaction_list || [];
|
|
280
|
-
for (const r of reactions) {
|
|
281
|
-
if (r.reaction_type?.emoji_type === emojiType) {
|
|
282
|
-
await this.client.im.messageReaction.delete({
|
|
283
|
-
path: { message_id: messageId, reaction_id: r.reaction_id }
|
|
284
|
-
});
|
|
285
|
-
break;
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
281
|
} catch {
|
|
289
282
|
}
|
|
290
283
|
}
|
|
@@ -992,9 +985,9 @@ async function main() {
|
|
|
992
985
|
break;
|
|
993
986
|
}
|
|
994
987
|
console.log(`[process] \u81EA\u7531\u5BF9\u8BDD, userId=${senderId}`);
|
|
995
|
-
await messenger.addReaction(messageId, "OnIt");
|
|
988
|
+
const reactionId = await messenger.addReaction(messageId, "OnIt");
|
|
996
989
|
const reply = await sessionManager.handleMessage(senderId, text);
|
|
997
|
-
await messenger.removeReaction(messageId,
|
|
990
|
+
await messenger.removeReaction(messageId, reactionId);
|
|
998
991
|
await messenger.replyText(messageId, reply);
|
|
999
992
|
break;
|
|
1000
993
|
}
|