@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/dist/src/commands/treasury.d.ts +6 -0
- package/dist/src/commands/treasury.d.ts.map +1 -0
- package/dist/src/commands/treasury.js +781 -0
- package/dist/src/commands/treasury.js.map +1 -0
- package/dist/src/index.js +3 -1
- package/dist/src/index.js.map +1 -1
- package/package.json +1 -1
- package/src/commands/treasury.ts +907 -0
- package/src/index.ts +3 -1
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.
|
|
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) => {
|