@web42/cli 0.2.9 → 0.2.10

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.
@@ -119,7 +119,8 @@ async function publishLiveUrl({ apiUrl, token, slug, a2aUrl, enabled, gatewaySta
119
119
  body: JSON.stringify({ a2a_url: a2aUrl, a2a_enabled: enabled, gateway_status: gatewayStatus }),
120
120
  });
121
121
  if (!res.ok) {
122
- console.warn(chalk.yellow(` Could not register URL with marketplace: ${res.status}`));
122
+ const errBody = await res.json().catch(() => ({}));
123
+ console.warn(chalk.yellow(` Could not register URL with marketplace: ${errBody.error ?? res.status}`));
123
124
  }
124
125
  else {
125
126
  console.log(chalk.dim(" Registered with marketplace"));
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const CLI_VERSION = "0.2.9";
1
+ export declare const CLI_VERSION = "0.2.10";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const CLI_VERSION = "0.2.9";
1
+ export const CLI_VERSION = "0.2.10";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@web42/cli",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "CLI for the Web42 Agent Marketplace - push, install, and remix OpenClaw agent packages",
5
5
  "type": "module",
6
6
  "bin": {