@clawcard/cli 1.1.5 → 1.1.6

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": "@clawcard/cli",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "The ClawCard CLI — manage your agent keys, billing, and setup from the terminal",
5
5
  "bin": {
6
6
  "clawcard": "./bin/clawcard.mjs"
@@ -104,7 +104,8 @@ export async function billingTransactionsCommand() {
104
104
  s.start("Fetching transactions...");
105
105
 
106
106
  try {
107
- const txns = await getTransactions();
107
+ const res = await getTransactions();
108
+ const txns = res.transactions || res;
108
109
  s.stop("");
109
110
 
110
111
  if (!txns.length) {