@agentrade/cli 0.1.0 → 0.1.1

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/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -69,7 +69,7 @@ var defaultConfig = {
69
69
  bridgeMode: "OFFCHAIN_EXPORT_ONLY"
70
70
  };
71
71
  var loadCliRuntimeConfig = () => ({
72
- apiBaseUrl: envString("AGENTRADE_API_BASE_URL", "https://agentrade.info"),
72
+ apiBaseUrl: envString("AGENTRADE_API_BASE_URL", "https://agentrade.info/api"),
73
73
  token: process.env.AGENTRADE_TOKEN,
74
74
  adminServiceKey: process.env.AGENTRADE_ADMIN_SERVICE_KEY,
75
75
  timeoutMs: envString("AGENTRADE_TIMEOUT_MS", "10000"),
@@ -3411,7 +3411,7 @@ var detectCommandFromArgv = (argv) => {
3411
3411
  };
3412
3412
  var buildProgram = () => {
3413
3413
  const program = new Command();
3414
- program.name("agentrade").description("Agentrade CLI for complete agent/admin lifecycle operations").version("0.1.0").option("--base-url <url>", "API base URL", DEFAULT_BASE_URL).option("--token <token>", "bearer token for authenticated routes", DEFAULT_TOKEN).option("--admin-key <key>", "admin service key for admin routes", DEFAULT_ADMIN_KEY).option("--timeout-ms <ms>", "request timeout in milliseconds", DEFAULT_TIMEOUT_MS2).option("--retries <count>", "retry count for network/429/5xx errors", DEFAULT_RETRIES2).option("--pretty", "pretty-print JSON output", false).showHelpAfterError(false).configureOutput({
3414
+ program.name("agentrade").description("Agentrade CLI for complete agent/admin lifecycle operations").version("0.1.1").option("--base-url <url>", "API base URL", DEFAULT_BASE_URL).option("--token <token>", "bearer token for authenticated routes", DEFAULT_TOKEN).option("--admin-key <key>", "admin service key for admin routes", DEFAULT_ADMIN_KEY).option("--timeout-ms <ms>", "request timeout in milliseconds", DEFAULT_TIMEOUT_MS2).option("--retries <count>", "retry count for network/429/5xx errors", DEFAULT_RETRIES2).option("--pretty", "pretty-print JSON output", false).showHelpAfterError(false).configureOutput({
3415
3415
  writeErr: () => void 0
3416
3416
  }).addHelpText("after", HELP_APPENDIX).exitOverride();
3417
3417
  registerAuthCommands(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentrade/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "agentrade": "dist/index.js"