koishi-plugin-prism 0.1.28 → 0.1.29

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/lib/index.js +1 -1
  2. package/package.json +2 -2
package/lib/index.js CHANGED
@@ -966,7 +966,7 @@ class PrismKoishiService {
966
966
  if (startDt && endDt) {
967
967
  const minutes = Math.floor((endDt.getTime() - startDt.getTime()) / 60_000);
968
968
  lines.push(`游玩时段:${formatHM(startDt)}-${formatHM(endDt)}`);
969
- lines.push(`游玩时长:${formatDurationValue(minutes)}|消费:${formatNumber(sTotal)}${currency}`);
969
+ lines.push(`游玩时长:${formatDurationValue(minutes)}|计价:${formatNumber(sTotal)}${currency}`);
970
970
  }
971
971
  else if (startDt) {
972
972
  lines.push(`入场:${formatHM(startDt)} (${status === "active" ? "计费中" : "已关闭"})`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koishi-plugin-prism",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "description": "PRiSM Next 计费与设备管理系统的 Koishi 机器人集成插件",
5
5
  "main": "./lib/index.js",
6
6
  "exports": {
@@ -48,4 +48,4 @@
48
48
  "test": "bun test test",
49
49
  "typecheck": "tsc -p tsconfig.json"
50
50
  }
51
- }
51
+ }