acp-extension-claude 0.13.7 → 0.13.8

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/usage.js +2 -2
  2. package/package.json +1 -1
package/dist/usage.js CHANGED
@@ -110,8 +110,8 @@ export async function getUsage(overrides = {}) {
110
110
  const sevenDayResetAt = parseDate(apiResponse.seven_day?.resets_at);
111
111
  const result = {
112
112
  planName,
113
- fiveHour,
114
- sevenDay,
113
+ fiveHour: fiveHour ? fiveHour / 100 : null,
114
+ sevenDay: sevenDay ? sevenDay / 100 : null,
115
115
  fiveHourResetAt,
116
116
  sevenDayResetAt,
117
117
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acp-extension-claude",
3
- "version": "0.13.7",
3
+ "version": "0.13.8",
4
4
  "description": "Forked ACP-compatible coding agent with improved timeout handling and logging",
5
5
  "main": "dist/lib.js",
6
6
  "types": "dist/lib.d.ts",