@max1874/feishu 0.2.14 → 0.2.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@max1874/feishu",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "type": "module",
5
5
  "description": "OpenClaw Feishu/Lark channel plugin",
6
6
  "license": "MIT",
package/src/bot.ts CHANGED
@@ -395,6 +395,7 @@ async function resolveFeishuMediaList(params: {
395
395
  path: saved.path,
396
396
  contentType: saved.contentType,
397
397
  placeholder: inferPlaceholder(messageType),
398
+ fileName,
398
399
  });
399
400
 
400
401
  log?.(`feishu: downloaded ${messageType} media, saved to ${saved.path}`);
package/src/types.ts CHANGED
@@ -52,4 +52,5 @@ export type FeishuMediaInfo = {
52
52
  path: string;
53
53
  contentType?: string;
54
54
  placeholder: string;
55
+ fileName?: string;
55
56
  };