@satorijs/adapter-lark 3.11.4 → 3.11.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.
package/lib/index.cjs CHANGED
@@ -995,7 +995,7 @@ var LarkMessageEncoder = class extends import_core3.MessageEncoder {
995
995
  checked: attrs.value,
996
996
  disabled: attrs.disabled,
997
997
  text: {
998
- tag: "plain_text",
998
+ tag: "lark_md",
999
999
  content: this.textContent
1000
1000
  }
1001
1001
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@satorijs/adapter-lark",
3
3
  "description": "Lark (飞书) Adapter for Satorijs",
4
- "version": "3.11.4",
4
+ "version": "3.11.5",
5
5
  "type": "module",
6
6
  "main": "lib/index.cjs",
7
7
  "types": "lib/index.d.ts",
package/src/message.ts CHANGED
@@ -259,7 +259,7 @@ export class LarkMessageEncoder<C extends Context = Context> extends MessageEnco
259
259
  checked: attrs.value,
260
260
  disabled: attrs.disabled,
261
261
  text: {
262
- tag: 'plain_text',
262
+ tag: 'lark_md',
263
263
  content: this.textContent,
264
264
  },
265
265
  })