@milerliu/feishu 0.1.15 → 0.1.16

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/send.ts +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@milerliu/feishu",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "type": "module",
5
5
  "description": "OpenClaw Feishu/Lark channel plugin",
6
6
  "license": "MIT",
package/src/send.ts CHANGED
@@ -382,11 +382,14 @@ export function buildMarkdownCard(text: string): Record<string, unknown> {
382
382
  type: "adaptive",
383
383
  config: {
384
384
  wide_screen_mode: true,
385
+ enable_forward: true,
385
386
  },
386
387
  elements: [
387
388
  {
388
389
  tag: "markdown",
389
390
  content: text,
391
+ text_align: "left",
392
+ text_size: "normal",
390
393
  },
391
394
  ],
392
395
  };