opencode-chat-channel 1.2.5 → 1.2.6
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.map +1 -1
- package/dist/index.js +1 -3
- package/package.json +1 -1
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AA6HlD,eAAO,MAAM,iBAAiB,EAAE,MAyF/B,CAAC;AAEF,eAAe,iBAAiB,CAAC;AAMjC,YAAY,EAAE,WAAW,EAAE,cAAc,EAAE,WAAW,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -304,12 +304,10 @@ function createMessageHandler(channel, sessionManager, client) {
|
|
|
304
304
|
let responseText = null;
|
|
305
305
|
try {
|
|
306
306
|
const sessionId = await sessionManager.getOrCreate(userId);
|
|
307
|
-
const now = new Date().toLocaleString("zh-CN", { timeZone: "Asia/Shanghai", hour12: false });
|
|
308
307
|
const result = await client.session.prompt({
|
|
309
308
|
path: { id: sessionId },
|
|
310
309
|
body: {
|
|
311
|
-
parts: [{ type: "text", text }]
|
|
312
|
-
system: `当前时间:${now}(北京时间 CST)。来自飞书渠道的消息。`
|
|
310
|
+
parts: [{ type: "text", text }]
|
|
313
311
|
}
|
|
314
312
|
});
|
|
315
313
|
responseText = extractResponseText(result.data?.parts ?? []);
|
package/package.json
CHANGED