@meet-im/meet 3.4.4 → 3.4.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.
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const MEET_PLUGIN_VERSION = "3.4.
|
|
1
|
+
export declare const MEET_PLUGIN_VERSION = "3.4.5";
|
|
2
2
|
export declare const MEET_OPENCLAW_VERSION = "2026.5.18";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const MEET_PLUGIN_VERSION = "3.4.
|
|
1
|
+
export const MEET_PLUGIN_VERSION = "3.4.5";
|
|
2
2
|
export const MEET_OPENCLAW_VERSION = "2026.5.18";
|
|
@@ -102,10 +102,18 @@ export async function createMeetReplyDispatcher(opts) {
|
|
|
102
102
|
let lastDeliveredVisibleText;
|
|
103
103
|
// 创建 typing callbacks(如果配置了 typing 且有必要参数)
|
|
104
104
|
const hasTypingParams = typingMode && typingMode !== "none" && sessionInfo && apiToken;
|
|
105
|
+
const MEET_TYPING_TTL_MS = 300_000;
|
|
106
|
+
const configuredTypingIntervalSeconds = cfg.agents?.defaults?.typingIntervalSeconds
|
|
107
|
+
?? cfg.session?.typingIntervalSeconds;
|
|
108
|
+
const openclawTypingTtlMs = typeof configuredTypingIntervalSeconds === "number" && configuredTypingIntervalSeconds > 0
|
|
109
|
+
? configuredTypingIntervalSeconds * 1_000
|
|
110
|
+
: 60_000;
|
|
111
|
+
const typingTtlMs = Math.max(MEET_TYPING_TTL_MS, openclawTypingTtlMs);
|
|
105
112
|
// stop 请求需要等待最后一个 start 完成,避免乱序
|
|
106
113
|
let lastStartPromise = Promise.resolve();
|
|
107
114
|
const typingCallbacks = hasTypingParams
|
|
108
115
|
? createTypingCallbacks({
|
|
116
|
+
maxDurationMs: typingTtlMs,
|
|
109
117
|
start: async () => {
|
|
110
118
|
// 直接发送,不串行化。typing start 是幂等的,重复发送无害
|
|
111
119
|
opts.runtime.log?.(`[${accountId}][${chatId}]: typing start sending...`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meet-im/meet",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "OpenClaw Meet channel plugin",
|
|
6
6
|
"scripts": {
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@types/node": "25.6.0",
|
|
63
63
|
"@vitest/coverage-v8": "4.1.5",
|
|
64
|
-
"openclaw": "2026.
|
|
64
|
+
"openclaw": "2026.6.1",
|
|
65
65
|
"tsx": "4.21.0",
|
|
66
66
|
"typescript": "6.0.3",
|
|
67
67
|
"vite": "6.4.2",
|