@paylobster/cli 4.2.0 → 4.3.0

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/src/index.ts CHANGED
@@ -20,6 +20,7 @@ import { createRevenueShareCommand } from './commands/revenue-share';
20
20
  import { createSwapCommand } from './commands/swap';
21
21
  import { createBridgeCommand } from './commands/bridge';
22
22
  import { createPortfolioCommand } from './commands/portfolio';
23
+ import { createTreasuryCommand } from './commands/treasury';
23
24
  import chalk from 'chalk';
24
25
 
25
26
  // Load environment variables from .env file if present
@@ -31,7 +32,7 @@ const program = new Command();
31
32
  program
32
33
  .name('plob')
33
34
  .description('🦞 PayLobster CLI - Payment infrastructure for AI agents')
34
- .version('4.2.0');
35
+ .version('4.3.0');
35
36
 
36
37
  // ASCII art banner
37
38
  const banner = `
@@ -66,6 +67,7 @@ program.addCommand(createRevenueShareCommand());
66
67
  program.addCommand(createSwapCommand());
67
68
  program.addCommand(createBridgeCommand());
68
69
  program.addCommand(createPortfolioCommand());
70
+ program.addCommand(createTreasuryCommand());
69
71
 
70
72
  // Handle errors
71
73
  program.exitOverride((err) => {