larkcc 0.12.2 → 0.12.3
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/CHANGELOG.md +13 -0
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.12.3] - 2026-05-09
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Suppress SDK warning for unhandled `im.message.reaction.created_v1` / `deleted_v1` events
|
|
15
|
+
|
|
16
|
+
## [0.12.2] - 2026-05-09
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- Format tool result content by type: Read results use language-tagged code blocks (auto-detected from file extension), Bash results use bash code blocks
|
|
21
|
+
- Increase tool result truncation threshold from 500 to 2000 characters
|
|
22
|
+
|
|
10
23
|
## [0.12.1] - 2026-05-09
|
|
11
24
|
|
|
12
25
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -137933,7 +137933,7 @@ var VERSION3;
|
|
|
137933
137933
|
var init_version = __esm({
|
|
137934
137934
|
"src/version.ts"() {
|
|
137935
137935
|
"use strict";
|
|
137936
|
-
VERSION3 = "0.12.
|
|
137936
|
+
VERSION3 = "0.12.3";
|
|
137937
137937
|
}
|
|
137938
137938
|
});
|
|
137939
137939
|
|
|
@@ -156981,7 +156981,11 @@ async function startApp(cwd2, config2, profile2, continueSession = false, force
|
|
|
156981
156981
|
});
|
|
156982
156982
|
wsClient.start({
|
|
156983
156983
|
eventDispatcher: new EventDispatcher({}).register({
|
|
156984
|
-
"im.message.receive_v1": handler
|
|
156984
|
+
"im.message.receive_v1": handler,
|
|
156985
|
+
"im.message.reaction.created_v1": () => {
|
|
156986
|
+
},
|
|
156987
|
+
"im.message.reaction.deleted_v1": () => {
|
|
156988
|
+
}
|
|
156985
156989
|
})
|
|
156986
156990
|
});
|
|
156987
156991
|
logger.success("Feishu connected! Waiting for messages...");
|