@8btc/finance-assistant-mcp 0.0.48 → 0.0.49

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/dist/index.cjs +6 -8
  2. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -45,7 +45,7 @@ function _interopNamespaceDefault(e) {
45
45
  }
46
46
  const echarts__namespace = /* @__PURE__ */ _interopNamespaceDefault(echarts);
47
47
  const d3__namespace = /* @__PURE__ */ _interopNamespaceDefault(d3);
48
- const version = "0.0.48";
48
+ const version = "0.0.49";
49
49
  const pkgJSON = {
50
50
  version
51
51
  };
@@ -2481,15 +2481,13 @@ function Chapter4$4({ data, roeSvg }) {
2481
2481
  /* @__PURE__ */ jsxRuntime.jsxs("ul", { className: "list", children: [
2482
2482
  /* @__PURE__ */ jsxRuntime.jsxs("li", { children: [
2483
2483
  /* @__PURE__ */ jsxRuntime.jsx("strong", { children: "经营现金流:" }),
2484
- data.cfo
2485
- ] }),
2486
- /* @__PURE__ */ jsxRuntime.jsxs("li", { children: [
2487
- /* @__PURE__ */ jsxRuntime.jsx("strong", { children: "自由现金流:" }),
2488
- data.current_ratio
2484
+ formatNumberToUnit(data.cfo),
2485
+ "元"
2489
2486
  ] }),
2490
2487
  /* @__PURE__ */ jsxRuntime.jsxs("li", { children: [
2491
2488
  /* @__PURE__ */ jsxRuntime.jsx("strong", { children: "经营现金流/净利润比例:" }),
2492
- data.cfo_to_np
2489
+ formatNumberToUnit(data.cfo_to_np * 100),
2490
+ "%"
2493
2491
  ] })
2494
2492
  ] })
2495
2493
  ] });
@@ -2501,7 +2499,7 @@ function Chapter5$4({ data }) {
2501
2499
  /* @__PURE__ */ jsxRuntime.jsx("thead", { className: "border-t border-b h-[64px]", children: /* @__PURE__ */ jsxRuntime.jsxs("tr", { children: [
2502
2500
  /* @__PURE__ */ jsxRuntime.jsx("th", { className: "w-[150px] px-2 font-normal", children: "公司" }),
2503
2501
  /* @__PURE__ */ jsxRuntime.jsx("th", { className: "w-[100px] px-2 font-normal", children: "股票代码" }),
2504
- /* @__PURE__ */ jsxRuntime.jsx("th", { className: "w-[100px] px-2 font-normal", children: "TTM市盈率" }),
2502
+ /* @__PURE__ */ jsxRuntime.jsx("th", { className: "w-[100px] px-2 font-normal", children: "PE" }),
2505
2503
  /* @__PURE__ */ jsxRuntime.jsx("th", { className: "w-[330px] px-2 font-normal", children: "估值点评" })
2506
2504
  ] }) }),
2507
2505
  /* @__PURE__ */ jsxRuntime.jsx("tbody", { children: data.pe_list.map((it, index) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@8btc/finance-assistant-mcp",
3
- "version": "0.0.48",
3
+ "version": "0.0.49",
4
4
  "description": "财经agent辅助mcp工具",
5
5
  "main": "dist/index.cjs",
6
6
  "type": "module",