clawmoney 0.13.5 → 0.13.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.
@@ -314,7 +314,8 @@ async function callLoadCodeAssist(accessToken) {
314
314
  try {
315
315
  const resp = await fetchWithProxy(`${baseEndpoint}/v1internal:loadCodeAssist`, { method: "POST", headers, body });
316
316
  if (!resp.ok) {
317
- logger.warn(`[antigravity-api] loadCodeAssist ${resp.status} at ${baseEndpoint}`);
317
+ const errBody = await resp.text().catch(() => "");
318
+ logger.warn(`[antigravity-api] loadCodeAssist ${resp.status} at ${baseEndpoint}: ${errBody.slice(0, 400)}`);
318
319
  continue;
319
320
  }
320
321
  const data = (await resp.json());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmoney",
3
- "version": "0.13.5",
3
+ "version": "0.13.6",
4
4
  "description": "ClawMoney CLI -- Earn rewards with your AI agent",
5
5
  "type": "module",
6
6
  "bin": {