@hasna/economy 0.2.38 → 0.2.39

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/dist/cli/index.js CHANGED
@@ -8037,7 +8037,8 @@ program.command("sync").description("Ingest cost data from all coding agents").o
8037
8037
  }
8038
8038
  }
8039
8039
  if (opts.force) {
8040
- db.exec(`DELETE FROM ingest_state WHERE source IN (${AGENTS.map((a) => `'${a}'`).join(", ")})`);
8040
+ const ingestSources = [...AGENTS, "codex-codewith"];
8041
+ db.exec(`DELETE FROM ingest_state WHERE source IN (${ingestSources.map((a) => `'${a}'`).join(", ")})`);
8041
8042
  if (opts.verbose)
8042
8043
  console.log(chalk7.dim("Cleared ingest cache"));
8043
8044
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/economy",
3
- "version": "0.2.38",
3
+ "version": "0.2.39",
4
4
  "description": "AI coding cost tracker — CLI + MCP server + REST API + web dashboard for Claude Code, Codex, Gemini, OpenCode, Cursor, Pi, and Hermes",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",